Add shot asset instance
Add an asset instance to a specific shot.
POST
/data/shots/{shot_id}/asset-instances
curl \
--request POST 'http://api.example.com/data/shots/e68e0ie8-gi19-8009-e514-91897426g69/asset-instances' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"asset_instance_id":"h91h3lh1-jl42-1332-h847-24120759j92"}'
Request examples
{
"asset_instance_id": "h91h3lh1-jl42-1332-h847-24120759j92"
}
Response examples (201)
{
"id": "e68e0ie8-gi19-8009-e514-91897426g69",
"name": "SH001",
"asset_instances": [
{
"id": "h91h3lh1-jl42-1332-h847-24120759j92",
"asset_id": "c46c8gc6-eg97-6887-c292-79675204e47"
}
]
}