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)
{
"name": "Welcome Template",
"uuid": "43468294-ee1f-4dfb-a59c-95308b42e278",
"version": 3,
"created_at": "2026-04-09T17:35:06+01:00",
"updated_at": "2026-04-09T17:35:06+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/c4c61544-95b8-4db2-8f04-50d4bd964272/content/pdf?plannr_account_uuid=0db96594-afec-45ca-a3e1-acb107153db9",
"public_docx_url": "https://api.plannrcrm.com/document-template/75296e4a-c746-4588-b01a-862e95aaba62/content/docx?plannr_account_uuid=081502ca-67e0-4102-b807-ecf20e14032a",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/d49b6d33-a1f0-4cf3-bed8-65a0ff8a06fc/content/sfdt?plannr_account_uuid=305158ce-f74e-48f8-abb3-9611cdc17649",
"public_preview_url": "https://api.plannrcrm.com/document-template/e9aac030-c814-4c99-bc68-7479882d8be2/content/preview?plannr_account_uuid=3dd9af1f-ae1e-46ba-b28e-43b7ba1c21fd",
"required_dependants": {
"client-1": "client"
}
}