Get all fact-find template questions by template Run in API Explorer
Ask AI
Query parameters
-
Filter by a comma separated list of UUIDs.
-
Filter by block UUID.
-
Filter by section UUID.
-
Filter by internal field id.
-
Filter by required flag.
-
Filter by visible flag.
-
Field to sort by. Valid fields are [position, created_at, updated_at]. Negative sign to denote DESC. Defaults to 'position'.
GET
/api/v2/fact-find/templates/{factFindTemplate_uuid}/questions
curl \
--request GET 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/questions' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "37110a52-96cf-4a0b-b9d5-98f870d4fb18",
"created_at": "2026-07-22T14:08:42+01:00",
"updated_at": "2026-07-22T14:08:42+01:00",
"field_name": "Field Name",
"position": "Position",
"is_required": "Is Required",
"is_visible": "Is Visible",
"always_required": "Always Required",
"has_conditional": "Has Condition",
"condition_type": "Condition Type"
}
]
}