Topic
Endpoint to retrieve data for topics.
Gets Topic
objects.
Authorizations
Path parameters
idinteger · int64Required
Id of the conference the topics 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
GET /rest-api/v2/frame/{id}/topic/ HTTP/1.1
Host:
token: YOUR_API_KEY
Accept: */*
{
"meta": {},
"data": [
{
"id": 1,
"name": [
{
"language": "text",
"content": "text"
}
],
"shortName": "text",
"parentTopicId": 1,
"visibility": {
"contribution": true,
"schedule": true
},
"colorCode": "text"
}
]
}
Was this helpful?