Topic

Endpoint to retrieve data for topics.

Finds topics by filtering a specific conference(frame).

get

Gets Topic objects.

Autorisierungen
Pfadparameter
idinteger · int64Erforderlich

Id of the conference the topics are loaded for.

Antworten
200

Successful response

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"
    }
  ]
}

War das hilfreich?