Create a shot for given project.

POST /data/projects/{project_id}/shots

Path parameters

  • project_id Required
application/json

Body Required

  • name string Required
  • description string
  • sequence_id string(uuid)
  • nb_frames integer

Responses

  • 201

    Shot created for given project

POST /data/projects/{project_id}/shots
curl \
 --request POST 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/shots' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"name":"Name of shot","description":"Description of shot","sequence_id":"a24a6ea4-ce75-4665-a070-57453082c25","nb_frames":24}'
Request examples
{
  "name": "Name of shot",
  "description": "Description of shot",
  "sequence_id": "a24a6ea4-ce75-4665-a070-57453082c25",
  "nb_frames": 24
}