Create a fact-find request Run in API Explorer
Ask AI
Body
-
The UUID of the fact find schema that you would like the client to use.
-
The UUID of the client account to send the fact find request. This must only be individual clients. Cannot be used with circle_uuid.
-
The UUID of the circle to send the fact find request to. Cannot be used with client_uuid.
-
This controls if an email to the client is sent to invite them to complete a fact find. Set this to false if you are going to send your own invitation.
-
The text that will appear in the invitation email sent to the client (if enabled)
POST
/api/v1/fact-find/request
curl \
--request POST 'https://api.plannrcrm.com/api/v1/fact-find/request' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"fact_find_schema_uuid":"2f9a6ef3-faaa-4b23-8a82-6e31bac36644","client_uuid":"b30fc3d1-4706-475c-bc81-f381fe9051c9","circle_uuid":"23c8acd2-95be-4d29-84ee-498b8df35973","send_invitation_email":true,"invitation_text":"Please complete this fact find."}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"fact_find_schema_uuid": "2f9a6ef3-faaa-4b23-8a82-6e31bac36644",
"client_uuid": "b30fc3d1-4706-475c-bc81-f381fe9051c9",
"circle_uuid": "23c8acd2-95be-4d29-84ee-498b8df35973",
"send_invitation_email": true,
"invitation_text": "Please complete this fact find."
}
Response examples (201)
{
"uuid": "4ec8531b-0103-4477-ae2e-9ae921477db4",
"created_at": "2026-05-19T18:31:18+01:00",
"updated_at": "2026-05-19T18:31:18+01:00",
"status": "complete",
"completed_at": "2026-05-14T18:31:18+01:00",
"invitation_text": "Please complete this fact find!",
"schema": {
"uuid": "a12b0e55-ac51-4775-bcb6-5afc102099ab",
"created_at": "2026-05-19T18:31:18+01:00",
"updated_at": "2026-05-19T18:31:18+01:00",
"archived_at": "2026-05-18T18:31:18+01:00",
"is_archived": false,
"name": "Default fact find",
"introduction_html": "Welcome to our fact find! <b>You can use some HTML too.</b>",
"sections_count": 5,
"public_url": "https://api.plannrcrm.com/fact-find/e0028730-6546-45aa-b2cc-0a91a5f498f4"
},
"latest_file": {
"uuid": "76d0fa46-28de-4a8f-8082-d020e56b3239",
"created_at": "2026-05-19T18:31:18+01:00",
"original_created_at": "2026-05-19T18:31:18+01:00",
"updated_at": "2026-05-19T18:31:18+01:00",
"uploaded_at": "2026-05-19T18:31:18+01:00",
"status": "uploaded",
"filename": "Welcome to Plannr.pdf",
"name": "Welcome to Plannr",
"extension": "pdf",
"type": "type",
"size": "21691783",
"path": "Gareth Thompson/Subfolder/Welcome to Plannr.pdf",
"last_modified": "2026-05-19T18:31:18+01:00",
"progress": "100",
"download_url": "https://api.plannrcrm.com/file/6e722153-e7d8-44b6-b0f9-8b37943194a6/download",
"folder_name": "folder 2",
"folder": "App\\Http\\Resources\\FolderResource",
"documentable_type": "account",
"documentable": "Object",
"navigator": {
"model_type": "account",
"model_uuid": "dab87b31-c65a-45fd-b667-818bc922f62b"
},
"firm": "App\\Http\\Resources\\FirmResource",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"tags": "App\\Http\\Resources\\TagResource"
},
"account": {
"uuid": "9fab3e72-b235-42df-9cc7-929c8ea355c3",
"created_at": "2026-05-19T18:31:18+01:00",
"updated_at": "2026-05-19T18:31:18+01:00",
"type": "client",
"role": "client",
"first_name": "Gareth",
"last_name": "Thompson",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"invitation_url": "https://api.plannrcrm.com/fact-find/c4b75214-2323-48f9-9b91-621bdfc8c011/41ff1a93-dfae-4520-8189-5ce7f5b7cdb4",
"fact_find_passes": {
"uuid": "925dc789-313d-4b43-8671-8085ff9c50d1",
"created_at": "2026-05-19T18:31:18+01:00",
"updated_at": "2026-05-19T18:31:18+01:00",
"firm": {
"uuid": "8e76e2f1-061c-4f47-85a0-f4353752998f",
"name": "Codepotato Ltd"
},
"account": "App\\Http\\Resources\\MinimalAccountResource",
"circle": {
"uuid": "dd88c89c-7b76-4377-9950-2aad94e26025",
"name": "The Codepotato Gang"
},
"expires_at": "2026-05-19T18:31:18+01:00",
"progress": 50,
"is_complete": false,
"completed_sections": 2
}
}