Get all fact-find schemas Run in API Explorer
Ask AI
Query parameters
-
Filter by a comma separated list of UUIDs.
-
Filter archived fact-find schemas. E.g filter[archived]=include, filter[archived]=exclude, filter[archived]=only
-
Field to sort by. Valid fields are [created_at, updated_at, name]. Negative sign to denote DESC. Defaults to 'created_at'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/fact-find/schema
curl \
--request GET 'https://api.plannrcrm.com/api/v1/fact-find/schema' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "212dcfa1-ece1-4e5e-b07c-9dad12e2ee52",
"created_at": "2026-04-29T16:54:32+01:00",
"updated_at": "2026-04-29T16:54:32+01:00",
"archived_at": "2026-04-28T16:54:32+01:00",
"is_archived": false,
"name": "Default fact find",
"introduction_html": "Welcome to our fact find! <b>You can use some HTML too.</b>",
"sections_count": 5,
"public_url": "https://api.plannrcrm.com/fact-find/6dae00a1-b7c0-4f7a-8d0e-4e62c436a558"
}
]
}