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": "da7d3b24-45a2-4866-82a4-a848a6ab895b",
"version": 3,
"created_at": "2025-09-17T15:46:52+01:00",
"updated_at": "2025-09-17T15:46:52+01:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/05daf2df-d56d-4348-a38b-1482025ca0f1/content/pdf?plannr_account_uuid=71e15b9b-806d-454c-9a4f-c6a2c9b18e63",
"public_docx_url": "https://api.plannrcrm.com/document-template/305e14b8-6893-40bb-af1f-f86cd2567557/content/docx?plannr_account_uuid=89b89abe-f948-4eef-beaa-b133d52292e7",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/5ef33b7b-98a5-4f72-b41b-9f0cb1e13b94/content/sfdt?plannr_account_uuid=efc816c6-a451-48b1-a23c-6a0bcf135cf8",
"public_preview_url": "https://api.plannrcrm.com/document-template/d5a32d50-f333-4c1a-a662-1767ef2863c0/content/preview?plannr_account_uuid=c1d1162b-a42a-4f32-902a-1e865befb411",
"required_dependants": {
"client-1": "client"
}
}