ScheduleRoom

Endpoint to retrieve data for rooms.

Finds rooms by filtering a specific conference(frame).

get

Gets Room objects.

Authorizations
Path parameters
idinteger · int64Required

Id of the conference the rooms are loaded for.

Responses
200

Successful response

application/json
get
GET /rest-api/v2/frame/{id}/schedule/room HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {
    "lastFinalization": "text"
  },
  "data": [
    {
      "id": 1,
      "name": "text",
      "seats": 1,
      "floor": 1,
      "roomNumber": "text",
      "roomArea": "text",
      "active": true,
      "description": "text",
      "technicalDetails": "text",
      "visibleOnDay": [
        1
      ]
    }
  ]
}

Was this helpful?