Get scene task types

GET /data/scenes/{scene_id}/task-types

Get task types for a scene.

Path parameters

  • scene_id Required

Responses

  • 200 application/json

    All task types related to given scene

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