ScheduleSession
Endpoint to retrieve data for sessions, of the currently finalized draft
Gets ScheduleSession
objects.
Autorisierungen
Pfadparameter
idinteger · int64Erforderlich
Id of the conference the sessions are loaded for.
Antworten
200
Successful response
application/json
400
Bad Request
application/json
401
Authentication problem
application/json
403
Forbidden
application/json
404
No resource found
application/json
429
Rate limitation exceeded
application/json
500
Internal error
application/json
get
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"
]
}
]
}
War das hilfreich?