Clone a fact-find template Run in API Explorer
Ask AI
POST
/api/v2/fact-find/templates/{factFindTemplate_uuid}/clone
curl \
--request POST 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/clone' \
--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"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "My Fact Find Template"
}
Response examples (201)
{
"uuid": "060fab0b-6cfc-4fc6-9197-0e0f4e6272d4",
"created_at": "2026-08-11T10:38:40+01:00",
"updated_at": "2026-08-11T10:38:40+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": "7c06aac2-901c-46e7-a2bc-006c18617611",
"created_at": "2026-08-11T10:38:40+01:00",
"updated_at": "2026-08-11T10:38:40+01:00",
"fact_find_template": {
"uuid": "856ce31d-a51b-43c2-8d5d-f4f87f72b720",
"created_at": "2026-08-11T10:38:45+01:00",
"updated_at": "2026-08-11T10:38:45+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": "88c3ab85-6b8d-48b6-b7ed-fbc3ecbc587d",
"created_at": "2026-08-11T10:38:45+01:00",
"updated_at": "2026-08-11T10:38:45+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."
]
}
}