ScheduleEvent

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

Finds events by filtering a specific conference(frame).

get

Gets ScheduleEvent objects.

Authorizations
Path parameters
idinteger · int64Required

Id of the conference the events are loaded for.

Responses
200

Successful response

application/json
get
GET /rest-api/v2/frame/{id}/schedule/event HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {
    "lastFinalization": "text"
  },
  "data": [
    {
      "id": 1,
      "title": [
        {
          "language": "text",
          "content": "text"
        }
      ],
      "start": "text",
      "end": "text",
      "session": 1,
      "type": "PaperEvent",
      "paper": {
        "id": 1,
        "abstract": "text",
        "authors": [
          {
            "id": 1,
            "presenter": true
          }
        ],
        "files": [
          {
            "type": "Abstract",
            "url": "https://example.com"
          }
        ]
      }
    }
  ]
}

Was this helpful?