GET
/
annotations
/
action_types
/
v1
curl --request GET \
  --url https://api.mottostreaming.com/annotations/action_types/v1 \
  --header 'Authorization: Bearer <token>'
{
  "action_types": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "image_url": "<string>",
      "category": "<string>",
      "input_fields": [
        {
          "field": "<string>",
          "description": "<string>",
          "type": "<string>",
          "default_value": "<any>",
          "secret": true
        }
      ],
      "output_fields": [
        {
          "field": "<string>",
          "description": "<string>",
          "type": "<string>"
        }
      ],
      "disabled": true
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page_size
integer

Maximum number of records to return

filter
string

Filter the result-action_type by properties using a subset of the Kibana Query Language. Currently supported fields: disabled

page_token
string

The pagination token in the List request.

Response

200
application/json
OK
action_types
object[]

ActionType is a single action type definition that gets invoked when an annotation is created.

next_page_token
string

The pagination token that should be used to get next page results. An empty value means no more results