cURL
curl --request GET \ --url https://api.formizee.com/v1/submissions/{endpointId} \ --header 'Authorization: Bearer <token>'
{ "_metadata": { "totalPages": 2, "page": 1, "itemsPerPage": 100 }, "submissions": [ { "id": "sub_4VjHrJoEwAFC6itz8oUBW9NW2bia", "endpointId": "enp_4VjHrJoEwAFC6itz8oUBW9NW2bia", "data": { "exampleValue": "foo" }, "location": "Spain", "isSpam": false, "isRead": false } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The id of the endpoint
"enp_4VjHrJoEwAFC6itz8oUBW9NW2bia"
x >= 1
List endpoint submission
Show child attributes
1 <= x <= 256
The id of the submission
"sub_4VjHrJoEwAFC6itz8oUBW9NW2bia"
The data of the submission in json format
{ "exampleValue": "foo" }
The origin location of the submission
"Spain"
Shows if the submission is marked as spam
false
Shows if the submission is already readed
Was this page helpful?