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)
{
"name": "Welcome Template",
"uuid": "1f0c9cdf-4c4b-4139-bdd2-6b0534d04f4e",
"version": 3,
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document-template/1a1a9bd9-3ccc-4942-ab52-663d0403b1a9/content/pdf?plannr_account_uuid=d3540575-f90d-47b0-9120-26aa4637ced3",
"public_docx_url": "https://api.plannrcrm.com/document-template/a6519dde-3d70-4765-8c75-a787c44bac49/content/docx?plannr_account_uuid=f20718ca-1a56-4a7e-b59f-bcac2d7571b8",
"public_sfdt_url": "https://api.plannrcrm.com/document-template/d74c5f06-35d1-4ee9-8f8b-e54de99ee1ba/content/sfdt?plannr_account_uuid=71eb1234-c7e4-4425-b0ec-ccbb38cc5a85",
"public_preview_url": "https://api.plannrcrm.com/document-template/94293936-1e1c-4179-8777-eb1fa090ce19/content/preview?plannr_account_uuid=c9c91add-a530-4c00-8f52-41b739b48448",
"required_dependants": {
"client-1": "client"
}
}