Get asset casting

GET /data/assets/{asset_id}/casting

Retrieve the casting information for a specific asset showing which shots or sequences use this asset

Path parameters

  • asset_id Required

    Unique identifier of the asset

Responses

  • 200 application/json

    Asset casting information successfully retrieved

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

      Asset unique identifier

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

        Casting entry unique identifier

      • entity_id string(uuid)

        Entity identifier (shot/sequence)

      • entity_name string

        Entity name

      • entity_type string

        Entity type (shot/sequence)

GET /data/assets/{asset_id}/casting
curl \
 --request GET 'http://api.example.com/data/assets/a24a6ea4-ce75-4665-a070-57453082c25/casting' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "asset_id": "a24a6ea4-ce75-4665-a070-57453082c25",
  "casting": [
    {
      "id": "b35b7fb5-df86-5776-b181-68564193d36",
      "entity_id": "d57d9hd7-fh08-7998-d403-80786315f58",
      "entity_name": "SH001",
      "entity_type": "shot"
    }
  ]
}