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": "eea894fd-4839-4bf2-b7cd-1e2efc703aef",
"version": 3,
"created_at": "2025-08-07T13:41:43+01:00",
"updated_at": "2025-08-07T13:41:43+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/f97fcc95-8a8d-4ef5-900d-2a66be169212/content/pdf?plannr_account_uuid=54e42ceb-4165-449f-94a6-dc5a3273108f",
"public_docx_url": "https://api.plannrcrm.com/document-template/58745840-ac44-4209-a4a6-54016f64f7db/content/docx?plannr_account_uuid=ac34225d-527c-4959-8a9a-bddf7fe497fb",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/6988a68d-afb4-40a5-9e86-6d56bc1629c6/content/sfdt?plannr_account_uuid=dae69dc7-32cd-46dc-83a8-c6125972f542",
"public_preview_url": "https://api.plannrcrm.com/document-template/3caad614-bf10-4da2-9669-6a7c79de5668/content/preview?plannr_account_uuid=32d5c49e-07d6-4808-aefe-557b1379bad6",
"required_dependants": {
"client-1": "client"
}
}