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": "529ca1d7-ce38-4315-b277-f03f918ee13e",
"created_at": "2026-06-08T16:08:03+01:00",
"updated_at": "2026-06-08T16:08:03+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": "0e26100c-e8f5-4088-9b9f-be4e48d814fd"
},
"public_docx_url": "https://api.plannrcrm.com/document/e0c8a943-8a58-4d61-baa1-6cb32387185a/content/docx?plannr_account_uuid=20bda7b4-47ce-409b-ad35-f29421e0d5c7",
"public_sfdt_url": "https://api.plannrcrm.com/document/94d7add6-aa5f-4e24-884f-55baf95af561/content/sfdt?plannr_account_uuid=e83a60f7-4520-4b13-bdf0-59caab810138",
"public_pdf_url": "https://api.plannrcrm.com/document/927502c5-fb6e-42f9-bfeb-558f58279973/content/pdf?plannr_account_uuid=05393bae-eb34-4716-b6df-d224ccdf9bbf",
"public_preview_url": "https://api.plannrcrm.com/document/686ea8e3-1465-42bf-9ac2-c7f1ecfcff54/content/preview?plannr_account_uuid=ce49cf4b-5e05-4e83-ad82-f98e9e9fd812"
}
]
}