A new endpoint is available to retrieve all active departments configured for a hotel, such as Front Desk, Housekeeping, or Restaurant. The endpoint supports pagination via page and per_page query parameters (maximum 50 per page).
Example response:
{
"results": [
{
"id": 1,
"code": "FRONTDESK"
},
{
"id": 2,
"code": "HOUSEKEEPING"
},
{
"id": 3,
"code": "RESTAURANT"
}
],
"total_count": 3
}




