Authorization: Bearer ********************curl --location --request GET 'https://connect.deskbird.com/rooms//bookings?offset&limit&userIds&startTime&endTime' \
--header 'Authorization: Bearer <token>'{
    "total": 100,
    "limit": 10,
    "offset": 0,
    "data": [
        {
            "attendees": [
                {
                    "email": "john.doe@example.com"
                }
            ],
            "durationInSeconds": 3600,
            "id": "booking-123",
            "isCheckedIn": false,
            "isPrivate": false,
            "officeId": "office-123",
            "roomId": "room-123",
            "startTime": "2024-01-01T10:00:00Z",
            "title": "Team Meeting",
            "type": "occurrence",
            "userId": "user-123"
        }
    ]
}