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":["60b03829-6ea5-41a4-9ea3-ad055363040e","5ddaab8d-fd58-46e7-b417-c739ecf5c48e","cb6c784d-b977-4452-8d82-c9740852ac6a"],"template_uuid":"ad20b46e-0cb8-42de-bf2c-eb0086067d56","known_dependants":{"client-1":"5f50a34b-7bf4-47e5-b7e7-ec3df0e68009"}}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement",
"client_uuids": [
"60b03829-6ea5-41a4-9ea3-ad055363040e",
"5ddaab8d-fd58-46e7-b417-c739ecf5c48e",
"cb6c784d-b977-4452-8d82-c9740852ac6a"
],
"template_uuid": "ad20b46e-0cb8-42de-bf2c-eb0086067d56",
"known_dependants": {
"client-1": "5f50a34b-7bf4-47e5-b7e7-ec3df0e68009"
}
}
Response examples (201)
{
"uuid": "1980c420-2c2f-4986-91f8-8664516098f7",
"created_at": "2026-05-08T14:41:55+01:00",
"updated_at": "2026-05-08T14:41:55+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": "8fc03737-f14c-47cf-87e2-a917f40649d6"
},
"public_docx_url": "https://api.plannrcrm.com/document/69ef3ceb-a309-4341-8b00-dabda5576593/content/docx?plannr_account_uuid=22cb6248-a19b-4b80-939c-ed368e63bac8",
"public_sfdt_url": "https://api.plannrcrm.com/document/363caa1d-ac53-4616-8575-f58b6a9a383d/content/sfdt?plannr_account_uuid=6499d2b0-882f-438d-9b94-cc06ccdf43f8",
"public_pdf_url": "https://api.plannrcrm.com/document/a8327769-353d-43b5-8e49-8981ad53ac80/content/pdf?plannr_account_uuid=c158cdf2-58dd-4fc9-9dbf-2fa0f8e12977",
"public_preview_url": "https://api.plannrcrm.com/document/984f9699-bc5b-4985-9a39-d416114c2786/content/preview?plannr_account_uuid=8fd25d0d-ef54-4ac4-a305-937d2207ba79"
}