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": "50cc3931-ae20-4389-ae28-1f75736f57cc",
"created_at": "2026-06-27T09:33:41+01:00",
"updated_at": "2026-06-27T09:33:41+01:00",
"version": 3,
"name": "Welcome Template",
"required_dependants": {
"client-1": "client"
},
"public_docx_url": "https://api.plannrcrm.com/document-template/14c05f66-a33d-4b71-9d4c-843c593d66c9/content/docx?plannr_account_uuid=6ae880f5-243c-4e2f-8f4d-b5da42a7e7df",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/35d7ddb7-db06-48ee-9d2a-8fd5a414a5fd/content/sfdt?plannr_account_uuid=114ccabb-f2b3-4c0a-90b6-88489c02a0c1",
"public_pdf_url": "https://api.plannrcrm.com/document-template/f5959b26-681f-4159-b0f0-720d563e113c/content/pdf?plannr_account_uuid=350d047f-b750-4ffa-b243-bb0b94a271ac",
"public_preview_url": "https://api.plannrcrm.com/document-template/832f3e09-ba56-444d-b683-07918b085e74/content/preview?plannr_account_uuid=348117f1-bae2-4a59-8d69-54a19c62f24b"
}