POST
/api/v1/document-template
curl \
--request POST 'https://api.plannrcrm.com/api/v1/document-template' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Client Service Agreement"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement"
}
Response examples (201)
{
"name": "Welcome Template",
"uuid": "4a49c26f-82ac-4a2f-a9b5-2b2eee9595b1",
"version": 3,
"created_at": "2025-06-25T15:10:44+01:00",
"updated_at": "2025-06-25T15:10:44+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/72dba722-2808-4d4a-a1f1-f3c85c759ff8/content/pdf?plannr_account_uuid=bd13284a-8964-45e7-8dbf-e0eeff6f060f",
"public_docx_url": "https://api.plannrcrm.com/document-template/46b35c07-679f-4f16-ae2c-8896b5d9533c/content/docx?plannr_account_uuid=bec477c1-d28c-495a-88b7-6f2477beacdd",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/79959afe-0deb-4d1c-9e42-ed3eb0c09f80/content/sfdt?plannr_account_uuid=94f2a6a7-1a50-4d42-aacf-ed81b9e49dc3",
"public_preview_url": "https://api.plannrcrm.com/document-template/1205246a-608b-4ff7-8a6f-d5d7559df070/content/preview?plannr_account_uuid=a9fd279d-6f77-4edc-9fb1-73105b54805e",
"required_dependants": {
"client-1": "client"
}
}