Get all fact-find requests for the user.
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
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/fact-find/request
curl \
-X GET 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}"
Response examples (200)
{
"data": [
{
"uuid": "071f4309-f5b4-453f-b325-3f80d0b5085f",
"schema": {
"name": "Default fact-find",
"uuid": "c3bca11c-b5ba-47f6-a696-5f9c790f6247",
"created_at": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"archived_at": "2025-01-16T11:18:32+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-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"latest_file": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Welcome to Plannr",
"size": "21691783",
"tags": "App\\Http\\Resources\\TagResource",
"type": "type",
"uuid": "7d6106df-e6c9-4769-b584-d752341abd9b",
"parent": "Object",
"status": "uploaded",
"account": "App\\Http\\Resources\\AccountResource",
"filename": "Welcome to Plannr.pdf",
"progress": "100",
"extension": "pdf",
"created_at": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"folder_name": "folder 2",
"uploaded_at": "2025-01-17T11:18:32+00:00",
"download_url": "https://plannr.valet/file/6817594a-55e1-4148-b664-29075539035e/download",
"last_modified": "2025-01-17T11:18:32+00:00",
"original_created_at": "2025-01-17T11:18:32+00:00"
},
"completed_at": "2025-01-12T11:18:32+00:00",
"invitation_text": "Please complete this fact-find!"
}
]
}