ScheduleCoreEvent

Endpoint to retrieve data for core events, of the currently finalized draft

Finds core events by filtering a specific conference(frame).

get

Gets ScheduleCoreEvent objects.

Authorizations
tokenstringRequired

Api key has to be used to authenticate against the server. The token parameter has must be sent in the header

Path parameters
idinteger · int64Required

Id of the conference the core events are loaded for.

Responses
200

Successful response

application/json
get
/rest-api/v2/frame/{id}/schedule/coreevent
GET /rest-api/v2/frame/{id}/schedule/coreevent HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {
    "lastFinalization": "text"
  },
  "data": [
    {
      "id": 1,
      "title": [
        {
          "language": "text",
          "content": "text"
        }
      ],
      "day": 1,
      "start": "text",
      "end": "text",
      "rooms": [
        1
      ]
    }
  ]
}

Was this helpful?