Authorization: Bearer ********************curl --location 'https://connect.deskbird.com/rooms/bookings?offset=undefined&limit=undefined&userIds=undefined&startTime=undefined&endTime=undefined&officeIds=undefined&roomIds=undefined&statuses=undefined&createdAt=undefined&updatedAt=undefined' \
--header 'Authorization: Bearer <token>'{
"total": 100,
"limit": 10,
"offset": 0,
"data": [
{
"createdAt": "2024-01-01T09:00:00.000Z",
"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",
"status": "accepted",
"title": "Team Meeting",
"type": "occurrence",
"userId": "user-123",
"updatedAt": "2024-01-01T09:30:00.000Z"
}
]
}