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":["22483e06-c5e7-4ef7-a1a3-7c3df7f69945","6e55e518-17b5-489f-b78f-01ff7600f20b","97239a96-a4ee-4b6d-acdf-e5ec12f57d50"],"template_uuid":"25807f1a-a704-46f0-8c6a-0786e97473f1","known_dependants":{"client-1":"0fb7884d-df5f-4f7c-b483-b38ff8a61eaa"}}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement",
"client_uuids": [
"22483e06-c5e7-4ef7-a1a3-7c3df7f69945",
"6e55e518-17b5-489f-b78f-01ff7600f20b",
"97239a96-a4ee-4b6d-acdf-e5ec12f57d50"
],
"template_uuid": "25807f1a-a704-46f0-8c6a-0786e97473f1",
"known_dependants": {
"client-1": "0fb7884d-df5f-4f7c-b483-b38ff8a61eaa"
}
}
Response examples (201)
{
"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"
}