Get shot asset instances

GET /data/assets/{asset_id}/shot-asset-instances

Retrieve all shot asset instances that are linked to a specific asset.

Path parameters

  • asset_id Required

    Unique identifier of the asset

Responses

  • 200 application/json

    List of shot asset instances successfully retrieved.

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

      Asset instance unique identifier

    • asset_id string(uuid)

      Asset identifier

    • shot_id string(uuid)

      Shot identifier

    • number string

      Instance number

    • description string

      Instance description

GET /data/assets/{asset_id}/shot-asset-instances
curl \
 --request GET 'http://api.example.com/data/assets/a24a6ea4-ce75-4665-a070-57453082c25/shot-asset-instances' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "f79f1jf9-hj20-9110-f625-02908537h70",
    "asset_id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "shot_id": "d57d9hd7-fh08-7998-d403-80786315f58",
    "number": "001",
    "description": "Main character instance"
  }
]