Get shots casting asset

GET /data/assets/{asset_id}/cast-in

Retrieve all shots that cast a specific asset in their breakdown.

Path parameters

  • asset_id Required

    Unique identifier of the asset

Responses

  • 200 application/json

    List of shots casting the asset successfully retrieved

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

      Shot unique identifier

    • name string

      Shot name

    • project_id string(uuid)

      Project identifier

    • sequence_id string(uuid)

      Sequence identifier

    • frame_in integer

      Frame in

    • frame_out integer

      Frame out

    • duration integer

      Shot duration in frames

GET /data/assets/{asset_id}/cast-in
curl \
 --request GET 'http://api.example.com/data/assets/a24a6ea4-ce75-4665-a070-57453082c25/cast-in' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "d57d9hd7-fh08-7998-d403-80786315f58",
    "name": "SH001",
    "project_id": "b35b7fb5-df86-5776-b181-68564193d36",
    "sequence_id": "e68e0ie8-gi19-8009-e514-91897426g69",
    "frame_in": 100,
    "frame_out": 200,
    "duration": 100
  }
]