Steelcase · Example Payload

Steelcase Create Booking Example

Office FurnitureWorkplaceRoom SchedulingFacilities ManagementIoTSmart OfficeFortune 1000

Steelcase Create Booking Example is an example object payload from Steelcase, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://roomwizard.local:443/api/create_booking",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "room_id": "conf-202",
      "subject": "Product Roadmap Review",
      "organizer": "alice.walker@company.com",
      "start_time": "2026-05-05T13:00:00-05:00",
      "end_time": "2026-05-05T14:00:00-05:00",
      "attendee_count": 12,
      "notes": "Please ensure the projector and video conferencing equipment are set up."
    }
  },
  "response": {
    "status": 201,
    "body": {
      "booking_id": "bk-20260505-007",
      "room_id": "conf-202",
      "room_name": "Innovation Lab",
      "subject": "Product Roadmap Review",
      "organizer": "alice.walker@company.com",
      "start_time": "2026-05-05T13:00:00-05:00",
      "end_time": "2026-05-05T14:00:00-05:00",
      "attendee_count": 12,
      "status": "confirmed",
      "calendar_source": "office365",
      "notes": "Please ensure the projector and video conferencing equipment are set up.",
      "created_at": "2026-05-02T10:30:00-05:00"
    }
  }
}