Create a fact-find request
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
The UUID of the client account to send the fact-find request. Can be individual, joint, business, trust.
-
The UUID of the fact-find schema that you would like the client to use.
-
invitation_text string
The text that will appear in the invitation email sent to the client.
POST
/api/v1/fact-find/request
curl \
-X POST https://api.plannrcrm.com/api/v1/fact-find/request \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"client_uuid":"string","fact_find_schema_uuid":"string","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
{
"client_uuid": "string",
"fact_find_schema_uuid": "string",
"invitation_text": "Please complete this fact-find."
}
Response examples (201)
{
"uuid": "09f2ba7d-4236-4a85-9d1d-07c71fb2f127",
"schema": {
"name": "Default fact-find",
"uuid": "d9bef448-2005-4f55-8419-cda6f4b132a6",
"created_at": "2025-01-12T12:56:00+00:00",
"updated_at": "2025-01-12T12:56:00+00:00",
"archived_at": "2025-01-11T12:56:00+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",
"created_at": "2025-01-12T12:56:00+00:00",
"updated_at": "2025-01-12T12:56:00+00:00",
"latest_file": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Welcome to Plannr",
"size": "21691783",
"tags": "App\\Http\\Resources\\TagResource",
"type": "type",
"uuid": "5934cf4f-30fe-4acb-839f-9e24f0958c5c",
"parent": "Object",
"status": "uploaded",
"account": "App\\Http\\Resources\\AccountResource",
"filename": "Welcome to Plannr.pdf",
"progress": "100",
"extension": "pdf",
"created_at": "2025-01-12T12:56:00+00:00",
"updated_at": "2025-01-12T12:56:00+00:00",
"folder_name": "folder 2",
"uploaded_at": "2025-01-12T12:56:00+00:00",
"download_url": "https://plannr.valet/file/dbdc5b1c-2fc8-4111-bf02-f3177a03aabd/download",
"last_modified": "2025-01-12T12:56:00+00:00",
"original_created_at": "2025-01-12T12:56:00+00:00"
},
"completed_at": "2025-01-07T12:56:00+00:00",
"invitation_text": "Please complete this fact-find!"
}