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":"ac2ce9db-7b26-45c3-9390-be3bc7d610f4","client_uuid":"1b6f825f-e470-428e-85d5-4059dd96ced1","circle_uuid":"742a48d1-479a-41e7-a7cf-221be321188c","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": "ac2ce9db-7b26-45c3-9390-be3bc7d610f4",
"client_uuid": "1b6f825f-e470-428e-85d5-4059dd96ced1",
"circle_uuid": "742a48d1-479a-41e7-a7cf-221be321188c",
"send_invitation_email": true,
"invitation_text": "Please complete this fact-find."
}
Response examples (201)
{
"uuid": "7d4650aa-a3b2-4cc7-83f1-0044d93c3c1d",
"schema": {
"name": "Default fact-find",
"uuid": "6d2c2c59-2c55-479c-84ac-a8bbdc9dfe32",
"created_at": "2026-02-10T15:18:35+00:00",
"public_url": "https://api.plannrcrm.com/fact-find/3717fed7-ff1c-4278-834d-bb2cb9dd32c3",
"updated_at": "2026-02-10T15:18:35+00:00",
"archived_at": "2026-02-09T15:18:35+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": "0897cb2e-7000-4790-9848-2058c846edd0",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2026-02-10T15:18:35+00:00",
"first_name": "Gareth",
"updated_at": "2026-02-10T15:18:35+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"created_at": "2026-02-10T15:18:35+00:00",
"updated_at": "2026-02-10T15:18:35+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": "5930209c-74e6-4c55-8797-760415364b6f",
"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": "e6b11f00-ec81-4365-9c59-4abe4171eacc"
},
"created_at": "2026-02-10T15:18:35+00:00",
"updated_at": "2026-02-10T15:18:35+00:00",
"folder_name": "folder 2",
"uploaded_at": "2026-02-10T15:18:35+00:00",
"documentable": "Object",
"download_url": "https://api.plannrcrm.com/file/90ee0eb2-4eb6-4b05-9882-2633ac8153d1/download",
"last_modified": "2026-02-10T15:18:35+00:00",
"documentable_type": "account",
"original_created_at": "2026-02-10T15:18:35+00:00"
},
"completed_at": "2026-02-05T15:18:35+00:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/f4a1a8ee-e239-45e5-9902-2ecb10a0f097/8de72c19-36ff-4c3b-bf1b-8022f842ddf4",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": {
"firm": {
"name": "Codepotato Ltd",
"uuid": "00a1e22c-ebaf-46cf-b61c-8f7343fcbed3"
},
"uuid": "1e345572-4440-4b8c-a97c-179a4dacfb67",
"circle": {
"name": "The Codepotato Gang",
"uuid": "ea4bfeb2-d6f6-4349-9c6e-8cf1b7ac19e2"
},
"account": "App\\Http\\Resources\\MinimalAccountResource",
"progress": 50,
"created_at": "2026-02-10T15:18:35+00:00",
"expires_at": "2026-02-10T15:18:35+00:00",
"updated_at": "2026-02-10T15:18:35+00:00",
"is_complete": false,
"completed_sections": 2
}
}