Create project shot
Create a shot in a project. Provide name and optional fields like description, sequence_id and nb_frames.
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":"SH010","description":"A short description of the shot","sequence_id":"a24a6ea4-ce75-4665-a070-57453082c25","nb_frames":24}'
Request examples
{
"name": "SH010",
"description": "A short description of the shot",
"sequence_id": "a24a6ea4-ce75-4665-a070-57453082c25",
"nb_frames": 24
}
Response examples (201)
{
"id": "a24a6ea4-ce75-4665-a070-57453082c25",
"name": "SH010",
"project_id": "b24a6ea4-ce75-4665-a070-57453082c25",
"sequence_id": "c24a6ea4-ce75-4665-a070-57453082c25",
"nb_frames": 24,
"description": "A short description of the shot"
}