GET
/
v1
/
submission
/
{endpointId}
/
{id}
curl --request GET \
  --url https://api.formizee.com/v1/submission/{endpointId}/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "sub_4VjHrJoEwAFC6itz8oUBW9NW2bia",
  "endpointId": "enp_4VjHrJoEwAFC6itz8oUBW9NW2bia",
  "data": {
    "exampleValue": "foo"
  },
  "location": "Spain",
  "isSpam": false,
  "isRead": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The id of the submission

Example:

"sub_4VjHrJoEwAFC6itz8oUBW9NW2bia"

endpointId
string
required

The id of the endpoint

Example:

"enp_4VjHrJoEwAFC6itz8oUBW9NW2bia"

Response

200
application/json

Retrieve a submission

The response is of type object.