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)
{
"uuid": "3c0aee10-71e6-48a6-a51e-956c97761eda",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"version": 3,
"name": "Welcome Template",
"required_dependants": {
"client-1": "client"
},
"public_docx_url": "https://api.plannrcrm.com/document-template/104e57ce-fe55-458a-8c3e-bf4581186fce/content/docx?plannr_account_uuid=0dc2f8ea-e81b-4f57-b290-888938e01f82",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/42b787e4-42c4-4545-8894-864a1aba3711/content/sfdt?plannr_account_uuid=d4a1f254-e73d-45d0-ace2-396b45f7979e",
"public_pdf_url": "https://api.plannrcrm.com/document-template/a8de8ce1-5a07-4ec7-91d0-30f90ecc41f4/content/pdf?plannr_account_uuid=85aa1175-54f7-417d-8df9-97beb927188f",
"public_preview_url": "https://api.plannrcrm.com/document-template/26b21b56-d2b7-4ab9-972f-05f116aa6b52/content/preview?plannr_account_uuid=651f40ba-a66f-4561-86b8-605ba2767970"
}