Create a fact-find request Run in API Explorer
Ask AI
Body
Required
-
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":"e4896251-90ae-435a-bb2e-89406f716a72","client_uuid":"be7da2c7-6cfd-4133-8841-9c0af9f031f4","circle_uuid":"a7fd32ff-f101-454e-90ab-dd465a046f52","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": "e4896251-90ae-435a-bb2e-89406f716a72",
"client_uuid": "be7da2c7-6cfd-4133-8841-9c0af9f031f4",
"circle_uuid": "a7fd32ff-f101-454e-90ab-dd465a046f52",
"send_invitation_email": true,
"invitation_text": "Please complete this fact-find."
}
Response examples (201)
{
"uuid": "3544a788-79da-428d-a2aa-0e90eb89e749",
"schema": {
"name": "Default fact-find",
"uuid": "09214535-6100-465e-9af4-197da1e303bb",
"created_at": "2025-12-04T22:09:16+00:00",
"public_url": "https://api.plannrcrm.com/fact-find/c86d7cc9-e5da-4175-bee8-0e1e207377e1",
"updated_at": "2025-12-04T22:09:16+00:00",
"archived_at": "2025-12-03T22:09:16+00:00",
"is_archived": false,
"sections_count": 5,
"introduction_html": "Welcome to our fact-find! <b>You can use some HTML too.</b>"
},
"status": "complete",
"account": {
"name": "Gareth Thompson",
"role": "client",
"type": "client",
"uuid": "4537ddb8-6476-4eb8-8db3-07cfbd9fd49a",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-12-04T22:09:16+00:00",
"first_name": "Gareth",
"updated_at": "2025-12-04T22:09:16+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"latest_file": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Welcome to Plannr",
"path": "Gareth Thompson/Subfolder/Welcome to Plannr.pdf",
"size": "21691783",
"tags": "App\\Http\\Resources\\TagResource",
"type": "type",
"uuid": "7c7593fe-aaf5-4702-a4ad-735411e3d94b",
"folder": "App\\Http\\Resources\\FolderResource",
"status": "uploaded",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"filename": "Welcome to Plannr.pdf",
"progress": "100",
"extension": "pdf",
"navigator": {
"model_type": "account",
"model_uuid": "eaf11a16-b3c7-456b-be6b-f086fb898249"
},
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"folder_name": "folder 2",
"uploaded_at": "2025-12-04T22:09:16+00:00",
"documentable": "Object",
"download_url": "https://api.plannrcrm.com/file/d2738abc-4029-4256-80eb-d5f2a42083fd/download",
"last_modified": "2025-12-04T22:09:16+00:00",
"documentable_type": "account",
"original_created_at": "2025-12-04T22:09:16+00:00"
},
"completed_at": "2025-11-29T22:09:16+00:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/a8797205-5b07-488b-9228-13eafe0b7405/94beacdb-652f-46f4-a63d-81f3db631846",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": {
"firm": {
"name": "Codepotato Ltd",
"uuid": "7a5fd7d4-6a29-4a8e-859a-21a944d6d201"
},
"uuid": "595613c0-dcf7-463c-bc81-049a6b7fdabc",
"circle": {
"name": "The Codepotato Gang",
"uuid": "5aca2f29-322b-4e8e-9f88-1bf29a24668d"
},
"account": "App\\Http\\Resources\\MinimalAccountResource",
"progress": 50,
"created_at": "2025-12-04T22:09:16+00:00",
"expires_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"is_complete": false,
"completed_sections": 2
}
}