{ "opencollection": "1.0.0", "info": { "name": "Steelcase RoomWizard Bookings API", "version": "1.0.0" }, "items": [ { "info": { "name": "Bookings", "type": "folder" }, "items": [ { "info": { "name": "Get Room Bookings", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/api/get_bookings", "params": [ { "name": "room_id", "value": "", "type": "query", "description": "Filter bookings by room identifier." }, { "name": "start_date", "value": "", "type": "query", "description": "Start date for booking query (YYYY-MM-DD)." }, { "name": "end_date", "value": "", "type": "query", "description": "End date for booking query (YYYY-MM-DD)." }, { "name": "include_cancelled", "value": "", "type": "query", "description": "Whether to include cancelled bookings in the response." } ] }, "docs": "Retrieves a list of bookings for a specific room or date range. Returns meeting details including subject, organizer, start time, end time, and attendee count." }, { "info": { "name": "Create a Booking", "type": "http" }, "http": { "method": "POST", "url": "https://{host}:{port}/api/create_booking", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new conference room booking for the specified room and time slot. The booking is synchronized with the connected calendaring system (Exchange, Office 365, or Google Calendar)." }, { "info": { "name": "Cancel a Booking", "type": "http" }, "http": { "method": "POST", "url": "https://{host}:{port}/api/cancel_booking", "body": { "type": "json", "data": "{}" } }, "docs": "Cancels an existing conference room booking. The cancellation is propagated to the connected calendaring system." } ] } ], "bundled": true }