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": "2e45735b-7f86-4446-9f71-ab8275ebce78",
"created_at": "2026-04-28T22:34:36+01:00",
"updated_at": "2026-04-28T22:34:36+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": "2b6fd06c-f415-437a-b18c-0046ed54b2e7"
},
"public_docx_url": "https://api.plannrcrm.com/document/088e6f9c-1cb5-47ae-b298-5dfa2c29e0b7/content/docx?plannr_account_uuid=7e3fb891-61c5-482c-bd38-b19f7f959bde",
"public_sfdt_url": "https://api.plannrcrm.com/document/688864e5-9057-4bb7-9fe4-d81bec1597e3/content/sfdt?plannr_account_uuid=31e4eeab-03d4-46d3-94e9-19ba223ab16e",
"public_pdf_url": "https://api.plannrcrm.com/document/cb50ce40-5e07-4550-ad1a-3f61b0bddeea/content/pdf?plannr_account_uuid=02501ffa-a5e3-46c9-bf8a-04d0cbbef72a",
"public_preview_url": "https://api.plannrcrm.com/document/8b15fdc0-3d9a-4b1f-a99b-59691de2505b/content/preview?plannr_account_uuid=5a87b281-1b7a-42ef-ab1f-6475c8a9670f"
}
]
}