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": "1a0c5411-1649-4548-a4fe-733595239989",
"status": "published",
"version": 3,
"created_at": "2025-11-17T21:14:39+00:00",
"updated_at": "2025-11-17T21:14:39+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document/6df66911-df82-418d-b928-fdad690b59c7/content/pdf?plannr_account_uuid=f2a156b9-5b40-4f63-9ff0-b37046d198fb",
"public_docx_url": "https://api.plannrcrm.com/document/ab6805ed-402a-4c15-ad83-6a8f9904f697/content/docx?plannr_account_uuid=535c14b1-1d83-4648-8772-7d542f649d29",
"public_sfdt_url": "https://api.plannrcrm.com/document/c3da8490-077b-49cb-822e-66d79baff075/content/sfdt?plannr_account_uuid=90d93805-1eee-4f59-b773-0fda16be27c2",
"known_dependants": {
"client-1": "f4174306-cdd4-4850-933f-09de597dbea0"
},
"public_preview_url": "https://api.plannrcrm.com/document/f6d7e532-6ad2-4268-9402-e1c1f9c8118f/content/preview?plannr_account_uuid=eb4fd002-1d4e-4e55-980d-18e18e71b9fa",
"required_dependants": {
"client-1": "client"
},
"last_publishing_error": "There was an error converting this file to PDF. Please try again later."
}
]
}