SchedulePerson
Endpoint to retrieve data for persons, in the currently finalized draft.
Gets Person 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 persons from the schedule are loaded for.
Responses
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
/rest-api/v2/frame/{id}/schedule/personGET /rest-api/v2/frame/{id}/schedule/person HTTP/1.1
Host:
token: YOUR_API_KEY
Accept: */*
{
"meta": {
"lastFinalization": "text"
},
"data": [
{
"id": 1,
"firstName": "text",
"lastName": "text",
"title": "text",
"email": "text",
"company": "text",
"city": "text",
"country": "text",
"photo": "https://example.com"
}
]
}Was this helpful?