ScheduleSession

Endpoint to retrieve data for sessions, of the currently finalized draft

Finds sessions by filtering a specific conference(frame).

get

Gets ScheduleSession 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 sessions are loaded for.

Responses
200

Successful response

application/json
get
/rest-api/v2/frame/{id}/schedule/session
GET /rest-api/v2/frame/{id}/schedule/session HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {
    "lastFinalization": "text"
  },
  "data": [
    {
      "id": 1,
      "title": [
        {
          "language": "text",
          "content": "text"
        }
      ],
      "description": [
        {
          "language": "text",
          "content": "text"
        }
      ],
      "topic": 1,
      "formOfPresentation": 1,
      "day": 1,
      "timeIndependent": true,
      "start": "text",
      "end": "text",
      "room": 1,
      "chairs": [
        {
          "person": 1,
          "role": 1
        }
      ],
      "events": [
        1
      ],
      "publicized": true,
      "sponsor": {
        "name": "text",
        "text": "text",
        "logo": "https://example.com"
      },
      "additionalInformation": {
        "videoRecordingAllowed": true,
        "ted": true
      },
      "continuingMedicalEducation": {
        "credits": 1,
        "category": "text"
      },
      "keywords": [
        "text"
      ]
    }
  ]
}

Was this helpful?