GET
/
annotations
/
types
/
v1
/
{annotation_type_id}
/
action_configuration
curl --request GET \
  --url https://api.mottostreaming.com/annotations/types/v1/{annotation_type_id}/action_configuration \
  --header 'Authorization: Bearer <token>'
{
  "configuration": {},
  "conditions": [
    {
      "confidence_threshold": 123,
      "source_types": {
        "types": [
          "<string>"
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

annotation_type_id
string
required

The id of the annotation type to attach action types to

Response

200
application/json
OK
configuration
object
conditions
object[]

The conditions under which the actions should be executed. If not provided, the actions will always be executed. If more than one condition is provided, all conditions must be met for the actions to be executed.