Update a document template
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
documentTemplate_uuid
string Required
PUT
/api/v1/document-template/{documentTemplate_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/document-template/documentTemplate_uuid' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Welcome Template"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Welcome Template"
}
Response examples (200)
{
"name": "Welcome Template",
"uuid": "aa98e807-0952-46c0-bbfe-f76b824015b8",
"version": 3,
"created_at": "2025-04-02T13:27:56+01:00",
"updated_at": "2025-04-02T13:27:56+01:00",
"public_pdf_url": "https://plannr.valet/document-template/73d371d7-a335-4ce9-bfed-c31bb3524e55/content/pdf?plannr_account_uuid=1f6997de-306a-4a06-b9f1-3b167f639201",
"public_docx_url": "https://plannr.valet/document-template/2342a77a-876e-4624-bfe4-38122359d51d/content/docx?plannr_account_uuid=0b4ba6a3-2826-434d-a6b7-388550bc4e94",
"public_sfdt_url": "https://plannr.valet/document-template/540b1d05-029d-4ed6-8266-a098306b5aa6/content/sfdt?plannr_account_uuid=f18d95e1-6270-481d-aae1-a1762aa73217",
"public_preview_url": "https://plannr.valet/document-template/0cd3cc36-64c7-4d70-afd5-9ebf21c37c4d/content/preview?plannr_account_uuid=53676107-98a1-41da-96dc-2fbbfc718f36",
"required_dependants": {
"client-1": "client"
}
}