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": "f265872b-3882-4adb-a2e9-fa9743b7d36c",
"version": 3,
"created_at": "2026-03-20T13:25:16+00:00",
"updated_at": "2026-03-20T13:25:16+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/6c1ec32e-0828-4572-ad71-ca3e808b2168/content/pdf?plannr_account_uuid=2eb1cf0b-3607-490e-a040-0c29cbabe6e1",
"public_docx_url": "https://api.plannrcrm.com/document-template/14b835c3-11f5-4a7c-b703-2f6a6bf48be6/content/docx?plannr_account_uuid=1422e72c-fe6d-4f9e-9acc-50d451de7ec8",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/d5436a8c-0ec8-4daf-aef1-cdb70858f745/content/sfdt?plannr_account_uuid=69011046-b3f1-4fa1-80e9-f9685b9f2604",
"public_preview_url": "https://api.plannrcrm.com/document-template/074e798e-9741-4200-a833-42d2abcdd59d/content/preview?plannr_account_uuid=b00ef7b9-1e48-4542-a6b0-2cf922fc38e7",
"required_dependants": {
"client-1": "client"
}
}