Update a document template Run in API Explorer
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": "8340f996-0718-43bf-acc2-c1e4aa706ec2",
"version": 3,
"created_at": "2025-11-17T21:14:39+00:00",
"updated_at": "2025-11-17T21:14:39+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/04cb2cbf-b80f-40b0-a8c7-b100233f6c0e/content/pdf?plannr_account_uuid=5e878bd2-294d-4fdb-acf2-ebcf0f611a21",
"public_docx_url": "https://api.plannrcrm.com/document-template/0398e9bf-d7ea-44be-b39b-e7b5998a66f5/content/docx?plannr_account_uuid=e6287499-2fec-4fd1-9075-2db512977693",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/0d8430bf-d1eb-450b-885e-95f80c4749bb/content/sfdt?plannr_account_uuid=c88af902-990f-43e9-95ec-1a3841233bce",
"public_preview_url": "https://api.plannrcrm.com/document-template/7de047f3-ec9a-4ef4-87b1-5e64b1b5d024/content/preview?plannr_account_uuid=50c74df8-7189-43e3-96e2-4bf56f4159db",
"required_dependants": {
"client-1": "client"
}
}