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": "22af3f74-e178-4b0d-ae3a-237f5d68551f",
"version": 3,
"created_at": "2025-07-17T16:23:22+01:00",
"updated_at": "2025-07-17T16:23:22+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/d71ca912-c97e-4377-9e79-4a52770f6110/content/pdf?plannr_account_uuid=01261065-a296-40c5-a948-34c2e14a0641",
"public_docx_url": "https://api.plannrcrm.com/document-template/26df5002-81f9-4c85-876a-2501e54c9b02/content/docx?plannr_account_uuid=4d767821-6b0b-4c2b-9f3a-2052cf9a53ce",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/c76dfe64-946b-49f2-9fa0-0d6cfafebd7f/content/sfdt?plannr_account_uuid=6ab705c1-9800-4ef4-b5f8-0c3a7ebc84cf",
"public_preview_url": "https://api.plannrcrm.com/document-template/e3b45ddd-caa6-4ea1-81e0-77d00a7df914/content/preview?plannr_account_uuid=49fa1807-1d95-4975-8638-05e9e9146c64",
"required_dependants": {
"client-1": "client"
}
}