Create a document pack Run in API Explorer
Ask AI
POST
/api/v1/document-pack/document-pack
curl \
--request POST 'https://api.plannrcrm.com/api/v1/document-pack/document-pack' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"Terms and Conditions","description":"Terms and Conditions for our services","is_template":true}'
Request examples
{
"name": "Terms and Conditions",
"description": "Terms and Conditions for our services",
"is_template": true
}
Response examples (200)
{
"data": [
[
{
"name": "Name of Document Pack",
"uuid": "4c0f5d8c-2e94-44d7-b07d-ebee86541f0b",
"created_at": "2025-12-24T11:02:59+00:00",
"updated_at": "2025-12-24T11:02:59+00:00",
"description": "Description of Document Pack",
"is_template": "Is Document Pack a template"
}
]
]
}