Body
-
The name of the document.
-
An array containing the client uuids that should be sent the document when it is built.
-
The UUID of the document template you want to be used with this document. You must not provide the sfdt or docx fields when creating from a template.
-
Optional: The document variable dependants. Used to swap variables out for real data.
Additional properties are allowed.
POST
/api/v1/document
curl \
--request POST 'https://api.plannrcrm.com/api/v1/document' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Client Service Agreement","client_uuids":["9f03c353-1132-4beb-a0c7-bc16e6becdc7","31c734b0-f03a-4f68-9de4-39d4f9338459","212d4b7d-539a-4fc0-b36f-e582fcb4ef16"],"template_uuid":"4e01b38b-9c73-41e2-9f0a-ef74f9fc50bd","known_dependants":{"client-1":"46f7f9d0-07fa-460c-917d-ceec7cc9368b"}}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement",
"client_uuids": [
"9f03c353-1132-4beb-a0c7-bc16e6becdc7",
"31c734b0-f03a-4f68-9de4-39d4f9338459",
"212d4b7d-539a-4fc0-b36f-e582fcb4ef16"
],
"template_uuid": "4e01b38b-9c73-41e2-9f0a-ef74f9fc50bd",
"known_dependants": {
"client-1": "46f7f9d0-07fa-460c-917d-ceec7cc9368b"
}
}
Response examples (201)
{
"uuid": "dcb5146d-9ff7-4bf5-8ff9-1498ece102fd",
"created_at": "2026-06-29T09:44:48+01:00",
"updated_at": "2026-06-29T09:44:48+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": "45c2d364-03f3-4eaa-9c41-48b0ae17f411"
},
"public_docx_url": "https://api.plannrcrm.com/document/2345ee66-ad43-46df-a3ca-664bc95957e3/content/docx?plannr_account_uuid=6f1eb474-3ed0-4128-ae0c-5475854bc94b",
"public_sfdt_url": "https://api.plannrcrm.com/document/c2c06d5f-3a8a-4064-add3-25067a5dc9b0/content/sfdt?plannr_account_uuid=1ed7be83-ac17-4149-b968-db66e3758300",
"public_pdf_url": "https://api.plannrcrm.com/document/94f735d7-bb47-4c7d-b660-cf496808cd8b/content/pdf?plannr_account_uuid=0f34c6aa-d553-4b22-b772-119288282517",
"public_preview_url": "https://api.plannrcrm.com/document/1fc3df70-d13f-48c6-806b-f6a5c56d7e3c/content/preview?plannr_account_uuid=d6a271df-0b3b-4186-a621-d467095eb3a1"
}