Update a fact-find template Run in API Explorer
Ask AI
Body
-
The internal reference name of the fact-find template. Must be unique within the firm.
Maximum length is
255. -
The client-facing name shown when the fact find is sent to a client.
Maximum length is
255. -
A brief description of the template.
Maximum length is
5000. -
An opening statement shown at the start of the fact-find.
Maximum length is
10000. -
A closing statement shown at the end of the fact-find.
Maximum length is
10000. -
Whether the fact find template is published and available for use.
PUT
/api/v2/fact-find/templates/{factFindTemplate_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/fact-find/templates/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": "My Fact Find Template",
"display_name": "Welcome Pack",
"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
}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "My Fact Find Template",
"display_name": "Welcome Pack",
"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
}
Response examples (200)
{
"uuid": "94453e43-870d-4503-93e6-9740a8381b64",
"created_at": "2026-09-18T09:00:13+01:00",
"updated_at": "2026-09-18T09:00:13+01:00",
"name": "My Fact-Find Template",
"display_name": "Welcome Pack",
"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,
"archived_at": "2026-09-17T09:00:13+01:00",
"is_archived": false,
"is_locked": false,
"active_session_count": 0,
"sections": {
"uuid": "bf5cd02b-6011-457f-8643-dd72e38da135",
"created_at": "2026-09-18T09:00:13+01:00",
"updated_at": "2026-09-18T09:00:13+01:00",
"fact_find_template": {
"uuid": "48693c4d-5648-4313-b3a1-ae9e0679c07b",
"created_at": "2026-09-18T09:00:18+01:00",
"updated_at": "2026-09-18T09:00:18+01:00",
"name": "My Fact-Find Template",
"display_name": "Welcome Pack",
"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,
"archived_at": "2026-09-17T09:00:18+01:00",
"is_archived": false,
"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": "c44d0e7e-2110-401e-8d5e-f0570b4f1990",
"created_at": "2026-09-18T09:00:18+01:00",
"updated_at": "2026-09-18T09:00:18+01:00",
"name": "Income Details",
"introduction_html": "<p>Please provide your income details below.</p>",
"position": 1
}
}
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}