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": "d8ce5da6-21be-489a-b696-da0fe006f587",
"version": 3,
"created_at": "2025-10-08T10:40:15+01:00",
"updated_at": "2025-10-08T10:40:15+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/3da7c9eb-7503-4515-b79b-22dff988de88/content/pdf?plannr_account_uuid=3722e836-ae11-4cff-8ae7-7ec3bef6eade",
"public_docx_url": "https://api.plannrcrm.com/document-template/b469d68a-0511-4034-a199-518c2b19de26/content/docx?plannr_account_uuid=2ba58a44-5dd3-4b2e-a0b5-ba29e7379e35",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/40098e12-4248-4c5e-a9fe-f9faab784a09/content/sfdt?plannr_account_uuid=545bebf2-8863-4777-87dd-07b4909c6434",
"public_preview_url": "https://api.plannrcrm.com/document-template/b74695a4-ff1f-4689-8a05-5403ed3d0959/content/preview?plannr_account_uuid=52b608d7-7320-43de-89fc-4ad8d456db40",
"required_dependants": {
"client-1": "client"
}
}