Get shot task types

GET /data/shots/{shot_id}/task-types

Get task types for a shot.

Path parameters

  • shot_id Required

Responses

  • 200 application/json

    All task types related to given shot

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
GET /data/shots/{shot_id}/task-types
curl \
 --request GET 'http://api.example.com/data/shots/a24a6ea4-ce75-4665-a070-57453082c25/task-types' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "Animation"
  }
]