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": "1e4659b5-67af-4ad1-b8bb-8c0cf1d1d92f",
"version": 3,
"created_at": "2026-03-18T16:05:26+00:00",
"updated_at": "2026-03-18T16:05:26+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/55d5d8fa-6ec2-4bb2-a947-b2edad4ae497/content/pdf?plannr_account_uuid=3528b323-7ec8-4391-8920-e99ea30d3cc3",
"public_docx_url": "https://api.plannrcrm.com/document-template/45fd0449-9877-4249-95c2-a965c46fa312/content/docx?plannr_account_uuid=6bf4818f-9eb1-410b-8cfd-a7ffdc961e9d",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/71e0232e-8eb9-4724-885a-9ff4ae1cc63d/content/sfdt?plannr_account_uuid=f147fd72-48f9-42ad-9d66-c068c7604ad7",
"public_preview_url": "https://api.plannrcrm.com/document-template/0c83379c-08ff-4f45-830f-460dd2ac74fa/content/preview?plannr_account_uuid=97f8fd2f-e88c-41f7-9501-7ddda73e3751",
"required_dependants": {
"client-1": "client"
}
}