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": "bf1723c0-dbea-419f-adde-58a7a87b65eb",
"version": 3,
"created_at": "2025-08-27T17:31:26+01:00",
"updated_at": "2025-08-27T17:31:26+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/d57957a0-e848-4dbb-899d-95b4bf1a6a2f/content/pdf?plannr_account_uuid=6b006ec7-9e41-4607-8adf-167f1e00c5a4",
"public_docx_url": "https://api.plannrcrm.com/document-template/65e8292a-b125-48a9-b3bb-0314615763cb/content/docx?plannr_account_uuid=bba00d3d-4c3b-4b0a-bff1-757e105513af",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/d8681894-16b5-447e-aec5-5bb5d6730459/content/sfdt?plannr_account_uuid=5391736f-9049-46e7-a30e-8c7e15636800",
"public_preview_url": "https://api.plannrcrm.com/document-template/2f0fa770-5020-4ba1-8ae7-ab25fe7df2ef/content/preview?plannr_account_uuid=512a835a-31c4-44f0-abff-984c24309ad3",
"required_dependants": {
"client-1": "client"
}
}