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":["e21205d4-068e-48a7-8d4c-61008b275245","5ec3bb60-5f5f-4d9a-b00d-7e2a07f2bc48","b58b6d92-8f90-4f59-a7e3-5079e91de83e"],"template_uuid":"b17cdc2b-9981-4a62-a50b-d4feaf672d0b","known_dependants":{"client-1":"f00af872-6245-4b9d-b0c7-65a25e5d4a38"}}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement",
"client_uuids": [
"e21205d4-068e-48a7-8d4c-61008b275245",
"5ec3bb60-5f5f-4d9a-b00d-7e2a07f2bc48",
"b58b6d92-8f90-4f59-a7e3-5079e91de83e"
],
"template_uuid": "b17cdc2b-9981-4a62-a50b-d4feaf672d0b",
"known_dependants": {
"client-1": "f00af872-6245-4b9d-b0c7-65a25e5d4a38"
}
}
Response examples (201)
{
"uuid": "d8dac71b-23c4-4404-937c-6e9f9fbe3152",
"created_at": "2026-04-28T22:34:36+01:00",
"updated_at": "2026-04-28T22:34:36+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": "0a9f673d-3b08-4ca6-af28-c3b5e89ded2d"
},
"public_docx_url": "https://api.plannrcrm.com/document/6c99760c-d4d8-4d75-b9af-6ca77a4ed2c3/content/docx?plannr_account_uuid=432f1d1f-25bd-4eea-a0bb-2e08269ae2f4",
"public_sfdt_url": "https://api.plannrcrm.com/document/8c79f17f-21da-468c-ae31-3a4fdc954a2d/content/sfdt?plannr_account_uuid=549bd980-17fa-4708-a0a2-eb6185a66558",
"public_pdf_url": "https://api.plannrcrm.com/document/cc7d78e3-1aee-46d9-84b2-14dcdd753c1e/content/pdf?plannr_account_uuid=9062f165-e9be-4ae5-9397-2e8c66825cee",
"public_preview_url": "https://api.plannrcrm.com/document/7471d041-33cc-4268-be05-10d3a418bd18/content/preview?plannr_account_uuid=e781efee-9fe2-4dbf-a467-cd2270f0586b"
}