GET
/
v1
/
submissions
/
{endpointId}
curl --request GET \
  --url https://api.formizee.com/v1/submissions/{endpointId} \
  --header 'Authorization: Bearer <token>'
{
  "_metadata": {
    "page": 1,
    "totalPages": 2,
    "itemsPerPage": 100
  },
  "submissions": [
    {
      "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

endpointId
string
required

The id of the endpoint

Query Parameters

page
number
default:
1
Required range: x >= 1
limit
number
default:
100
Required range: x >= 1

Response

200
application/json
List endpoint submission
_metadata
object
required
submissions
object[]
required