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.

Autorisierungen
Pfadparameter
idinteger · int64Erforderlich

Id of the conference the core events are loaded for.

Antworten
200

Successful response

application/json
get
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
      ]
    }
  ]
}

War das hilfreich?