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": "d5ec76f2-fc66-4c8e-be0a-dae0a1a0ecfa",
"status": "published",
"version": 3,
"created_at": "2026-03-18T16:05:26+00:00",
"updated_at": "2026-03-18T16:05:26+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document/f5d712f3-ccb5-40d3-8dba-97d7d3705fe2/content/pdf?plannr_account_uuid=a968421e-680c-4195-b6db-be5d42a601c1",
"public_docx_url": "https://api.plannrcrm.com/document/15a03df9-9520-4ff5-b01e-0071234beb6f/content/docx?plannr_account_uuid=06ed8239-291a-4c9e-8af7-5c9bf9c71bb5",
"public_sfdt_url": "https://api.plannrcrm.com/document/34ed6696-6388-4b26-bc32-a867cb480ebc/content/sfdt?plannr_account_uuid=e448244e-7895-4438-8aa2-29c68dcd90e8",
"known_dependants": {
"client-1": "5e150f27-b473-41cc-a0e2-7e88a084137c"
},
"public_preview_url": "https://api.plannrcrm.com/document/811d5de7-6095-4cc2-b634-6189aae82d29/content/preview?plannr_account_uuid=6e2e8f50-2628-4877-8161-2dae56d1eea3",
"required_dependants": {
"client-1": "client"
},
"last_publishing_error": "There was an error converting this file to PDF. Please try again later."
}
]
}