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": [
[
{
"uuid": "1e3bc28b-92b4-4d48-8209-d44304f057d8",
"created_at": "2026-08-07T15:29:25+01:00",
"updated_at": "2026-08-07T15:29:25+01:00",
"name": "Name of Document Pack",
"description": "Description of Document Pack",
"is_template": "Is Document Pack a template"
}
]
]
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}