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": "dd6dd60a-7ac9-4a38-a688-191e57a88c12",
"created_at": "2025-06-25T15:10:45+01:00",
"updated_at": "2025-06-25T15:10:45+01:00",
"description": "Description of Document Pack",
"is_template": "Is Document Pack a template"
}
]
}