Unpublish a fact-find template — retires it from the picker so no new sessions can be created against it. Existing sessions are unaffected. Run in API Explorer
Ask AI
Allowed even when the template is locked: this is the adviser's escape hatch for "I want to stop using this template" without losing history.
POST
/api/v2/fact-find/templates/{factFindTemplate_uuid}/unpublish
curl \
--request POST 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/unpublish' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"uuid": "72d5dd34-1826-48c4-837b-a6f685c68d40",
"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": "2df94733-544b-4023-b5b2-ca24d60f6b88",
"created_at": "2026-07-22T14:08:42+01:00",
"updated_at": "2026-07-22T14:08:42+01:00",
"fact_find_template": {
"uuid": "7953dcb2-6ada-44ed-8e41-2da7af78757e",
"created_at": "2026-07-22T14:08:48+01:00",
"updated_at": "2026-07-22T14:08:48+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": "76ac1b82-b57f-462a-9da1-a8ab2f9ec675",
"created_at": "2026-07-22T14:08:48+01:00",
"updated_at": "2026-07-22T14:08:48+01:00",
"name": "Income Details",
"introduction_html": "<p>Please provide your income details below.</p>",
"position": 1
}
}
}