Create a document template Run in API Explorer
Ask AI
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": "2bd5e7da-eece-47fc-bdbe-e15a982f49bd",
"version": 3,
"created_at": "2026-02-26T15:22:28+00:00",
"updated_at": "2026-02-26T15:22:28+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/5502f3be-e796-4781-a2fb-5dffd11b413c/content/pdf?plannr_account_uuid=c3dd9f61-bd30-4831-adb6-8b242648d8bb",
"public_docx_url": "https://api.plannrcrm.com/document-template/c23a6052-135b-43dd-b3e3-66394b146537/content/docx?plannr_account_uuid=3e54d574-db42-4ad7-9cad-d055438eba8f",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/b52876ff-9537-4ca3-9343-2dbb0e3ed76a/content/sfdt?plannr_account_uuid=5541739a-34d3-4f17-bf21-3e09b6f33733",
"public_preview_url": "https://api.plannrcrm.com/document-template/359b9e21-3ceb-4cbe-809c-e3fd61c1b98c/content/preview?plannr_account_uuid=8b2d55e4-49cb-4552-8796-1a85b7155eea",
"required_dependants": {
"client-1": "client"
}
}