The GET /groups and GET /groups/{id} endpoints include two additional attributes for custom groups: deposit_policy and cancellation_policy. Each returns the policy id, name, and description as configured in the PMS. If no policy is attached to a group, the fields are returned empty. Requires the New Custom Group functionality to be enabled.
For full details on deposit and cancellation policies, use the GET /hotels/{id}/deposit_policies and GET /hotels/{id}/cancellation_policies endpoints.
Example Response
{
"id": 123,
"name": "Summer Group",
"deposit_policy": {
"id": 1,
"name": "Standard Deposit Policy",
"description": "50% deposit required at time of booking."
},
"cancellation_policy": {
"id": 2,
"name": "Standard Cancellation Policy",
"description": "Full refund if cancelled 30 days prior to arrival."
}
}




