GET
/
annotations
/
action_types
/
v1
/
{action_type_id}
curl --request GET \
  --url https://api.mottostreaming.com/annotations/action_types/v1/{action_type_id} \
  --header 'Authorization: Bearer <token>'
{
  "action_type": {
    "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
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

action_type_id
string
required

Response

200
application/json
OK
action_type
object

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