Query parameters
-
Comma separated list of relationships to include in the response. Valid relationships are [clients, file].
-
Filter by a comma separated list of UUIDs.
-
Filter by partial document title
-
date Filter documents created before a given date. Format: YYYY-MM-DD
-
date Filter documents created after a given date. Format: YYYY-MM-DD
-
Filter by a comma separated list of client UUIDs.
-
Comma separated string of circle UUIDs to filter by.
-
Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to 'updated_at'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/document
curl \
--request GET 'https://api.plannrcrm.com/api/v1/document' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "1cc28cad-e518-4841-ab20-81e227e0ad47",
"created_at": "2026-06-27T09:33:41+01:00",
"updated_at": "2026-06-27T09:33:41+01:00",
"version": 3,
"name": "Welcome Template",
"status": "published",
"last_publishing_error": "There was an error converting this file to PDF. Please try again later.",
"required_dependants": {
"client-1": "client"
},
"known_dependants": {
"client-1": "43aeea76-3514-4b30-9e23-d585ca4cfb90"
},
"public_docx_url": "https://api.plannrcrm.com/document/86fa6f61-bce9-4fdc-a4f1-de18d34b91a2/content/docx?plannr_account_uuid=6d8a7e2d-2a31-4983-bd01-ae8bbf9f7b15",
"public_sfdt_url": "https://api.plannrcrm.com/document/1d3b026a-813f-4ad0-8124-e8b18288163e/content/sfdt?plannr_account_uuid=5f9a50f4-d6cd-4974-a9b2-7ef5a28ed66f",
"public_pdf_url": "https://api.plannrcrm.com/document/5e4314e3-3ae4-411c-9cfb-492c3274bbfd/content/pdf?plannr_account_uuid=04196c5c-99ef-4d0a-8e01-6af75e68ae99",
"public_preview_url": "https://api.plannrcrm.com/document/a6426d0d-5e09-4e1e-a2ac-8ec898b9569b/content/preview?plannr_account_uuid=9e31c6e4-c699-4a4e-bf49-1bef612986d3"
}
]
}