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": "390cc5df-b40f-499d-a5e7-6988a5e8ac5f",
"version": 3,
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/166acc78-c308-4e6d-ad13-0660e6b9ca69/content/pdf?plannr_account_uuid=e5efcbaa-85cb-4121-9c13-00bfc87f0a10",
"public_docx_url": "https://api.plannrcrm.com/document-template/3026c94d-7a67-430c-96e8-11438fb4c180/content/docx?plannr_account_uuid=13718779-df70-4a19-964d-7cab7c67c66c",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/3afd50fa-00f1-4383-ac80-f49e097c831f/content/sfdt?plannr_account_uuid=b0043a5e-c85e-4ac2-9351-0686794727c0",
"public_preview_url": "https://api.plannrcrm.com/document-template/8b888a35-a786-4910-bd79-618cc26c7608/content/preview?plannr_account_uuid=bfa2afbf-082f-4db4-89eb-7adf83481710",
"required_dependants": {
"client-1": "client"
}
}