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": "46eb65c6-2279-43f3-aeeb-4ca254e3f1f4",
"version": 3,
"created_at": "2026-04-08T15:40:47+01:00",
"updated_at": "2026-04-08T15:40:47+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/205b38a3-2f8d-44a5-8909-9e84f0476088/content/pdf?plannr_account_uuid=df22bfd1-6d16-440c-83ed-c5cb13e7dc69",
"public_docx_url": "https://api.plannrcrm.com/document-template/e8e94bc3-efb8-415b-b0ee-09263cbb0d99/content/docx?plannr_account_uuid=26ba9cc1-6d22-42f1-9b1b-8a349bc0e633",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/ace1927f-3e5a-42ef-bdad-eb026b87e843/content/sfdt?plannr_account_uuid=6d1f5c60-b197-4488-b536-1753ae183cff",
"public_preview_url": "https://api.plannrcrm.com/document-template/69187292-30ed-48f1-a6b6-fc090b174a41/content/preview?plannr_account_uuid=3c402aaf-c7d5-4276-956b-e5c733cfc342",
"required_dependants": {
"client-1": "client"
}
}