Update a document template Run in API Explorer
Ask AI
PUT
/api/v1/document-template/{documentTemplate_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/document-template/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Welcome Template"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Welcome Template"
}
Response examples (200)
{
"uuid": "a4f9e2b9-2d55-47ef-b35e-2c242df4e91b",
"created_at": "2026-06-08T16:08:02+01:00",
"updated_at": "2026-06-08T16:08:02+01:00",
"version": 3,
"name": "Welcome Template",
"required_dependants": {
"client-1": "client"
},
"public_docx_url": "https://api.plannrcrm.com/document-template/4edee047-c323-4f2f-b81f-6287b09932e3/content/docx?plannr_account_uuid=f3fb2ec2-7dd1-4498-ba49-154213f6004b",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/c6308535-0ffa-4835-a695-8321699d16d0/content/sfdt?plannr_account_uuid=dedb836f-99b6-4b75-bf2e-05a7e3482d98",
"public_pdf_url": "https://api.plannrcrm.com/document-template/6bdca066-a989-4f5e-921f-ca98756bda0f/content/pdf?plannr_account_uuid=0f199f16-6657-4481-a9e9-7333eb9d2ab6",
"public_preview_url": "https://api.plannrcrm.com/document-template/e8769d60-3d8c-4a1a-9e0f-04977eeec08c/content/preview?plannr_account_uuid=41563914-5622-456a-be2a-51ddfedb320f"
}