Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Body
Required
-
fact_find_schema_uuid
string Required The UUID of the fact-find schema that you would like the client to use.
-
client_uuid
string Required The UUID of the client account to send the fact-find request. This must only be individual clients. Cannot be used with circle_uuid.
-
circle_uuid
string Required The UUID of the circle to send the fact-find request to. Cannot be used with client_uuid.
-
send_invitation_email
boolean 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.
-
invitation_text
string 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 {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"fact_find_schema_uuid":"ff993685-353d-4194-b56c-8c87e30e0fbc","client_uuid":"e5fcac03-1050-4ab1-a688-ed16245185c5","circle_uuid":"d0d79e06-a7fc-496a-8a6a-0cd64cb35fb4","send_invitation_email":true,"invitation_text":"Please complete this fact-find."}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"fact_find_schema_uuid": "ff993685-353d-4194-b56c-8c87e30e0fbc",
"client_uuid": "e5fcac03-1050-4ab1-a688-ed16245185c5",
"circle_uuid": "d0d79e06-a7fc-496a-8a6a-0cd64cb35fb4",
"send_invitation_email": true,
"invitation_text": "Please complete this fact-find."
}
Response examples (201)
{
"uuid": "8df0933b-a8cc-4eba-a7b1-a4f340cd82db",
"schema": {
"name": "Default fact-find",
"uuid": "54baae31-9dcf-4fc6-ab23-bbc48a6371e0",
"created_at": "2025-06-13T16:58:59+01:00",
"public_url": "https://plannr.valet/fact-find/37ab662c-5aa3-4b53-9149-369e5a9d6f5c",
"updated_at": "2025-06-13T16:58:59+01:00",
"archived_at": "2025-06-12T16:58:59+01: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": "245d71e7-d039-4f3b-a29a-63d3c9488f45",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-06-13T16:58:59+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-13T16:58:59+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"created_at": "2025-06-13T16:58:59+01:00",
"updated_at": "2025-06-13T16:58:59+01: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": "c364df0d-2243-423d-8620-c21d18e787e8",
"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": "54a878de-84fe-4ff1-a6e0-aedbfb415a07"
},
"created_at": "2025-06-13T16:58:59+01:00",
"updated_at": "2025-06-13T16:58:59+01:00",
"folder_name": "folder 2",
"uploaded_at": "2025-06-13T16:58:59+01:00",
"documentable": "Object",
"download_url": "https://plannr.valet/file/90ba83ee-56da-4704-8f7b-6416ae2a404d/download",
"last_modified": "2025-06-13T16:58:59+01:00",
"documentable_type": "account",
"original_created_at": "2025-06-13T16:58:59+01:00"
},
"completed_at": "2025-06-08T16:58:59+01:00",
"invitation_url": "https://plannr.valet/fact-find/8371d423-f21f-47b5-9785-34da5048647d/82489a12-504d-4518-a7fe-345bf8b86610",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": {
"firm": {
"name": "Codepotato Ltd",
"uuid": "18205541-8a2f-4700-813d-5d1305b9a384"
},
"uuid": "6b18cc28-182b-448e-add6-7411c214018d",
"circle": {
"name": "The Codepotato Gang",
"uuid": "3bcfea0e-6863-4f2a-ad3b-538f813fbe5c"
},
"account": "App\\Http\\Resources\\MinimalAccountResource",
"progress": 50,
"created_at": "2025-06-13T16:58:59+01:00",
"expires_at": "2025-06-13T16:58:59+01:00",
"updated_at": "2025-06-13T16:58:59+01:00",
"is_complete": false,
"completed_sections": 2
}
}