Publish a fact-find template. Run in API Explorer
Ask AI
Allowed even when the template is locked — publishing only flips a flag
and never affects any in-flight or historical session. Pairs with
unpublish so an adviser can retire a locked template (preventing new
sessions from being created against it) and bring a clone forward as
the active version.
POST
/api/v2/fact-find/templates/{factFindTemplate_uuid}/publish
curl \
--request POST 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/publish' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"uuid": "810eedaf-7284-4ecb-8040-c141532faec2",
"created_at": "2026-08-28T07:35:00+01:00",
"updated_at": "2026-08-28T07:35:00+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": "c4fe5373-83bb-49a9-bb03-39c1dd7b71e3",
"created_at": "2026-08-28T07:35:00+01:00",
"updated_at": "2026-08-28T07:35:00+01:00",
"fact_find_template": {
"uuid": "f00823fc-8ec7-44de-91b7-7c4d72ae8bd2",
"created_at": "2026-08-28T07:35:05+01:00",
"updated_at": "2026-08-28T07:35:05+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
},
"name": "Personal Details",
"introduction_html": "<p>Please provide your personal details below.</p>",
"position": 1,
"is_complete": false,
"blocks": {
"uuid": "66e2bafd-bb39-4304-b19e-141289400be6",
"created_at": "2026-08-28T07:35:05+01:00",
"updated_at": "2026-08-28T07:35:05+01:00",
"name": "Income Details",
"introduction_html": "<p>Please provide your income details below.</p>",
"position": 1
}
}
}