Set frames for given shots.

POST /actions/projects/{project_id}/task-types/{task_type_id}/set-shot-nb-frames
application/json

Body Required

  • shots array[object] Required
    Hide shots attributes Show shots attributes object
    • shot_id string(uuid)
    • nb_frames integer

Responses

  • 200

    Frames set for given shots

POST /actions/projects/{project_id}/task-types/{task_type_id}/set-shot-nb-frames
curl \
 --request POST 'http://api.example.com/actions/projects/{project_id}/task-types/{task_type_id}/set-shot-nb-frames' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"shots":[{"shot_id":"a24a6ea4-ce75-4665-a070-57453082c25","nb_frames":24}]}'
Request examples
{
  "shots": [
    {
      "shot_id": "a24a6ea4-ce75-4665-a070-57453082c25",
      "nb_frames": 24
    }
  ]
}