Create a document template Run in API Explorer
Ask AI
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)
{
"uuid": "0d536a11-825a-4d2e-a284-f13ee29db533",
"created_at": "2026-05-08T14:41:55+01:00",
"updated_at": "2026-05-08T14:41:55+01:00",
"version": 3,
"name": "Welcome Template",
"required_dependants": {
"client-1": "client"
},
"public_docx_url": "https://api.plannrcrm.com/document-template/d130e17c-9943-467d-9cc2-d1de72ff0631/content/docx?plannr_account_uuid=245ec4b6-05cb-4116-b427-04a8b44bf3f7",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/b5010451-1b67-4bd2-bc89-9ecce8b22e65/content/sfdt?plannr_account_uuid=98b551b8-9b2b-4140-bf3e-57dc2c980181",
"public_pdf_url": "https://api.plannrcrm.com/document-template/93e0d9b9-f52d-4d9e-a794-91d704e868f3/content/pdf?plannr_account_uuid=6bf96dd0-b597-4a4f-a5f4-39eef25ef890",
"public_preview_url": "https://api.plannrcrm.com/document-template/e1c854bc-ccb0-4adb-8f80-6f130511de2c/content/preview?plannr_account_uuid=2ee22f92-65df-4878-8338-3b4593eddd06"
}