Get all fact-find requests the client owns.
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
client_id
string Required The ID of the client.
Query parameters
-
filter[uuid]
string Filter by a comma separated list of UUIDs.
-
sort
string Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to 'created_at'.
-
per_page
integer Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/client/{client_id}/fact-find/requests
curl \
--request GET 'https://api.plannrcrm.com/api/v1/client/client_id/fact-find/requests' \
--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}"
Response examples (200)
{
"data": [
{
"uuid": "9bf8de42-cb75-4fd0-8e2d-6dd19b7c5dc0",
"schema": {
"name": "Default fact-find",
"uuid": "a1b7c7fa-3fb7-490c-92bb-c8d778639b64",
"created_at": "2025-06-17T14:20:18+01:00",
"public_url": "https://plannr.valet/fact-find/711f105f-4c57-470f-a7aa-af74716deeb7",
"updated_at": "2025-06-17T14:20:18+01:00",
"archived_at": "2025-06-16T14:20:18+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": "b2d02f00-72fb-4dba-a285-07025b8b48c1",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-06-17T14:20:18+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-17T14:20:18+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"created_at": "2025-06-17T14:20:18+01:00",
"updated_at": "2025-06-17T14:20:18+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": "85bbb541-581f-4777-9240-49b29f3b2b17",
"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": "74ee1363-2030-49ef-9664-8524759da27b"
},
"created_at": "2025-06-17T14:20:18+01:00",
"updated_at": "2025-06-17T14:20:18+01:00",
"folder_name": "folder 2",
"uploaded_at": "2025-06-17T14:20:18+01:00",
"documentable": "Object",
"download_url": "https://plannr.valet/file/88a55fde-85e5-436a-986a-721b1d87d5f5/download",
"last_modified": "2025-06-17T14:20:18+01:00",
"documentable_type": "account",
"original_created_at": "2025-06-17T14:20:18+01:00"
},
"completed_at": "2025-06-12T14:20:18+01:00",
"invitation_url": "https://plannr.valet/fact-find/07ba214d-789e-44c7-89c1-dcca04ff6045/8ee49b45-bf95-4b77-99e1-723a1316c08e",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": {
"firm": {
"name": "Codepotato Ltd",
"uuid": "1d7be256-e9c7-479c-9d11-b1affa7dde11"
},
"uuid": "30864234-b54c-4322-8986-d52dca1941fc",
"circle": {
"name": "The Codepotato Gang",
"uuid": "d27de21b-9811-4da9-8fa0-9abb5958075c"
},
"account": "App\\Http\\Resources\\MinimalAccountResource",
"progress": 50,
"created_at": "2025-06-17T14:20:18+01:00",
"expires_at": "2025-06-17T14:20:18+01:00",
"updated_at": "2025-06-17T14:20:18+01:00",
"is_complete": false,
"completed_sections": 2
}
}
]
}