Update a fact-find section Run in API Explorer
Ask AI
PUT
/api/v2/fact-find/sections/{factFindSection_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/fact-find/sections/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Personal Details","introduction_html":"\u003cp\u003ePlease provide your personal details below.\u003c/p\u003e","position":1}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Personal Details",
"introduction_html": "<p>Please provide your personal details below.</p>",
"position": 1
}
Response examples (200)
{
"uuid": "47158156-f03b-47e4-af5b-0354fcf3c534",
"created_at": "2026-07-22T14:08:42+01:00",
"updated_at": "2026-07-22T14:08:42+01:00",
"fact_find_template": {
"uuid": "8ad8a7d9-77c2-4a69-8883-439aef1153a0",
"created_at": "2026-07-22T14:08:42+01:00",
"updated_at": "2026-07-22T14:08:42+01:00",
"name": "My Fact-Find Template",
"description": "A comprehensive fact-find template for new clients.",
"opening_statement": "Welcome to our fact-find process...",
"closing_statement": "Thank you for completing the fact find",
"is_published": true,
"is_locked": false,
"active_session_count": 0,
"sections": {
"uuid": "be082657-87a9-44c2-9290-4a248cad515d",
"created_at": "2026-07-22T14:08:48+01:00",
"updated_at": "2026-07-22T14:08:48+01:00",
"name": "Personal Details",
"introduction_html": "<p>Please provide your personal details below.</p>",
"position": 1,
"is_complete": false
}
},
"name": "Personal Details",
"introduction_html": "<p>Please provide your personal details below.</p>",
"position": 1,
"is_complete": false,
"blocks": {
"uuid": "ccf2b2ab-046a-4da3-a36b-b85ac5054c05",
"created_at": "2026-07-22T14:08:42+01:00",
"updated_at": "2026-07-22T14:08:42+01:00",
"fact_find_section": {
"uuid": "be082657-87a9-44c2-9290-4a248cad515d",
"created_at": "2026-07-22T14:08:48+01:00",
"updated_at": "2026-07-22T14:08:48+01:00",
"name": "Personal Details",
"introduction_html": "<p>Please provide your personal details below.</p>",
"position": 1,
"is_complete": false
},
"name": "Income Details",
"introduction_html": "<p>Please provide your income details below.</p>",
"position": 1
}
}