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": [
{
"name": "Welcome Template",
"uuid": "2ceda440-babc-424a-9e40-8d5d1b84a82d",
"status": "published",
"version": 3,
"created_at": "2026-04-08T15:40:47+01:00",
"updated_at": "2026-04-08T15:40:47+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document/690e6779-874c-45ea-9423-fb721649844b/content/pdf?plannr_account_uuid=d620a282-fbd2-4705-bd58-2f1b7eaca944",
"public_docx_url": "https://api.plannrcrm.com/document/6c552d6b-5516-4909-9429-96985e6494d1/content/docx?plannr_account_uuid=686c3cdc-d9b5-4626-b810-31101cb0958f",
"public_sfdt_url": "https://api.plannrcrm.com/document/27a9c563-d058-43fe-b18e-a38864acfb37/content/sfdt?plannr_account_uuid=dce80b5d-2f23-44e5-b328-ed3b8eadcc60",
"known_dependants": {
"client-1": "a3dd7fcd-0cd7-4cd3-a0ed-7d330ac72ffb"
},
"public_preview_url": "https://api.plannrcrm.com/document/9299f671-2629-4688-90c4-fadcefe17acd/content/preview?plannr_account_uuid=d2434bc7-b9d3-4d25-953d-32434f72a750",
"required_dependants": {
"client-1": "client"
},
"last_publishing_error": "There was an error converting this file to PDF. Please try again later."
}
]
}