GET
/
forms
/
{form_id}
/
submissions
List all submissions
curl --request GET \
  --url https://{your-workspace}.neetoform.com/api/external/v1/forms/{form_id}/submissions \
  --header 'X-Api-Key: <x-api-key>'
{
  "submissions": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "field_values": [
        {}
      ],
      "user_agent": {
        "id": "<string>",
        "name": "<string>",
        "version": "<string>",
        "ip_address": "<string>",
        "device_name": "<string>",
        "device_type": "<string>",
        "operating_system": "<string>",
        "operating_system_version": "<string>",
        "submission_id": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "responses": [
        {
          "id": "<string>",
          "label": "<string>",
          "position": 123,
          "kind": "<string>",
          "slug": "<string>",
          "value": "<string>"
        }
      ]
    }
  ],
  "total_count": 123
}
Replace {your-workspace} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying your subdomain.

Headers

X-Api-Key
string
default:your-api-key
required

X-Api-Key is used to authenticate requests using an API key. Provide your API key in this header to access protected endpoints. Refer to Authentication for more information.

Path Parameters

form_id
string
required

Id of the form can be retrieved by going to the particular form, and copying it from the URL.

Query Parameters

page_number
integer

Retrieve paginated forms by specifying the desired page number. If this parameter is absent, all forms will be returned.

page_size
integer

Set the number of results returned in the response. Defaulting to 30 when omitted.

Response

200 - application/json

OK - Request succeeded

The response is of type object.