Get all answers for a submission Run in API Explorer
Ask AI
GET
/api/v1/form/{form_uuid}/submission/{submission_uuid}/answer
curl \
--request GET 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed/submission/6ff8f7f6-1eb3-3525-be4a-3932c805afed/answer' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "62ee1c0b-1b37-4c6e-95c8-34381e81d342",
"created_at": "2026-04-28T22:34:35+01:00",
"updated_at": "2026-04-28T22:34:35+01:00",
"value": "this as an answer to a form question",
"question": {
"uuid": "5258bc7f-2d60-4362-9d61-4b2d865c2e74",
"created_at": "2026-04-28T22:34:35+01:00",
"updated_at": "2026-04-28T22:34:35+01:00",
"section": "App\\Http\\Resources\\FormSectionResource",
"title": "What is your name?",
"help_text": "Gareth",
"caption": "Your full legal name",
"type": "string",
"required": true,
"position": 1,
"selection_options": [
"option 1",
"option 2"
],
"target_field": "name",
"key": "what_is_your_name",
"linked_question": "App\\Http\\Resources\\FormBuilder\\LinkedFormQuestionResource",
"linked_primary": true
}
}
]
}