Clipform

List form respondents

Returns respondent records with contact fields and per-node answers for a single form.

GET
/forms/{formId}/respondents

Authorization

Authorization
Required
Bearer <token>

API key (cf_*) passed as Bearer token

In: header

Path Parameters

formId
Required
string
Format: "uuid"
curl -X GET "https://api.clipform.io/v1/forms/497f6eca-6276-4993-bfeb-53cbbbba6f08/respondents" \
  -H "Authorization: Bearer <token>"

List of respondents

[
  {
    "id": "string",
    "first_name": "string",
    "last_name": "string",
    "email": "string",
    "completed_at": "2019-08-24T14:15:22Z",
    "answers": {}
  }
]