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": "6e735591-fa5b-4034-aace-485038d78879",
"version": 3,
"created_at": "2025-09-17T15:46:52+01:00",
"updated_at": "2025-09-17T15:46:52+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/d1b2e9e6-3d99-4554-8772-1bb385043133/content/pdf?plannr_account_uuid=e6aec1a2-877e-43c3-818b-9e1c11686a61",
"public_docx_url": "https://api.plannrcrm.com/document-template/b3d0a77d-ccde-494a-8a3c-00bf91267dd9/content/docx?plannr_account_uuid=ff097883-af39-41f2-8aba-23df3542f7a3",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/818ec520-65d7-435a-b967-f02ddf9d1736/content/sfdt?plannr_account_uuid=4240ed85-d777-4bb6-974b-88271cd3bf3a",
"public_preview_url": "https://api.plannrcrm.com/document-template/80d25fa8-0e6d-4937-8fe0-5b8050d90024/content/preview?plannr_account_uuid=00443477-cd96-4ade-ad80-76f7070e667d",
"required_dependants": {
"client-1": "client"
}
}