GET
/api/v1/form/{form_uuid}/question/{uuid}
curl \
--request GET 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed/question/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"key": "what_is_your_name",
"type": "string",
"uuid": "a90e9a98-3e62-47c3-8a6c-c1799337ae38",
"title": "What is your name?",
"caption": "Your full legal name",
"section": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "db74be3b-96fa-4c78-a969-d4289f44ad14",
"title": "Personal Details",
"position": 1,
"questions": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2025-07-17T16:23:21+01:00",
"updated_at": "2025-07-17T16:23:21+01:00"
},
"position": 1,
"required": true,
"help_text": "Gareth",
"created_at": "2025-07-17T16:23:21+01:00",
"updated_at": "2025-07-17T16:23:21+01:00",
"target_field": "name",
"linked_primary": true,
"linked_question": {
"type": "selection",
"field": "gender",
"label": "Gender",
"caption": "Your drink preference",
"forced_required": false,
"formatted_field": "Gender",
"is_custom_field": false,
"selection_options": [
"male",
"female",
"non-binary",
"transgender",
"intersex",
"other",
"unknown"
]
},
"selection_options": [
"option 1",
"option 2"
]
}