Mark given scene as source of given shot.

POST /data/scenes/{scene_id}/shots

Path parameters

  • scene_id Required
application/json

Body Required

  • shot_id string(uuid) Required

Responses

  • 200

    Given scene marked as source of given shot

POST /data/scenes/{scene_id}/shots
curl \
 --request POST 'http://api.example.com/data/scenes/a24a6ea4-ce75-4665-a070-57453082c25/shots' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"shot_id":"a24a6ea4-ce75-4665-a070-57453082c25"}'
Request examples
{
  "shot_id": "a24a6ea4-ce75-4665-a070-57453082c25"
}