Get episode shots casting

GET /data/projects/{project_id}/episodes/{episode_id}/sequences/all/casting

Retrieve the casting information for all shots from a specific episode.

Path parameters

  • project_id Required

    Unique identifier of the project

  • episode_id Required

    Unique identifier of the episode

Responses

  • 200 application/json

    Episode shots casting information successfully retrieved

    Hide response attributes Show response attributes object
    • shot_id string(uuid)

      Shot unique identifier

    • shot_name string

      Shot name

    • casting array[object]
      Hide casting attributes Show casting attributes object
      • asset_id string(uuid)

        Asset identifier

      • asset_name string

        Asset name

GET /data/projects/{project_id}/episodes/{episode_id}/sequences/all/casting
curl \
 --request GET 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/episodes/d57d9hd7-fh08-7998-d403-80786315f58/sequences/all/casting' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "shot_id": "e68e0ie8-gi19-8009-e514-91897426g69",
    "shot_name": "SH001",
    "casting": [
      {
        "asset_id": "c46c8gc6-eg97-6887-c292-79675204e47",
        "asset_name": "Main Character"
      }
    ]
  }
]