Create a document template Run in API Explorer
POST
/api/v1/document-template
curl \
--request POST 'https://api.plannrcrm.com/api/v1/document-template' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Client Service Agreement"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement"
}
Response examples (201)
{
"name": "Welcome Template",
"uuid": "1a2113f8-b6aa-4736-9799-9779acf5117d",
"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-template/1cebeb1e-4e63-49c2-93e2-ecf230451db6/content/pdf?plannr_account_uuid=59b64a64-3a94-46de-afe8-fc571b03c301",
"public_docx_url": "https://api.plannrcrm.com/document-template/7847d8bf-d09b-4a8e-a01c-9e2ff85f4eff/content/docx?plannr_account_uuid=fdfce92e-6e41-4354-aee8-004d16b04c03",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/e724ee94-98d8-4520-8eda-45244ea70078/content/sfdt?plannr_account_uuid=1003dd95-6687-4854-a9a5-0da76a7c9e3f",
"public_preview_url": "https://api.plannrcrm.com/document-template/925b01ad-a60e-42eb-8784-80998f38c67e/content/preview?plannr_account_uuid=ed8baff9-c48a-4900-87a5-c3809fcfa092",
"required_dependants": {
"client-1": "client"
}
}