GET
/
annotations
/
sets
/
v1
curl --request GET \
  --url https://api.mottostreaming.com/annotations/sets/v1 \
  --header 'Authorization: Bearer <token>'
{
  "sets": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "name": "<string>",
      "icon_asset_id": "<string>",
      "priority": "<string>",
      "disabled": true,
      "custom_data": {},
      "sport": "SPORT_UNSPECIFIED"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project_id
string
filter
string

Filter the result-set by properties using a subset of the Kibana Query Language. Only AND statements are supported. E.g. content_base_type:event and content_type_id:football_match and disabled:false

Note: content_base_type and content_type_id are mandatory. These values should match content types as they have been defined in the CMS service.

Response

200
application/json
OK
sets
object[]

AnnotationSet bundles together annotation types that are related, e.g. football annotation types (goal, corner kick, red card, etc).