Import shotgun shots
Import Shotgun shots. Send a list of Shotgun shot entries in the JSON body. Returns created or updated shots with frame ranges, custom fields, and asset links.
POST
/import/shotgun/shots
curl \
--request POST 'http://api.example.com/import/shotgun/shots' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '[{"id":12345,"code":"SH010","assets":[{"id":33333}],"project":{"name":"My Project"},"sg_scene":{"id":22222},"sg_cut_in":1001,"sg_sequence":{"id":11111},"sg_cut_duration":50}]'
Request example
[
{
"id": 12345,
"code": "SH010",
"assets": [
{
"id": 33333
}
],
"project": {
"name": "My Project"
},
"sg_scene": {
"id": 22222
},
"sg_cut_in": 1001,
"sg_sequence": {
"id": 11111
},
"sg_cut_duration": 50
}
]
Response examples (200)
[
{
"id": "a24a6ea4-ce75-4665-a070-57453082c25",
"name": "SH010",
"data": {
"frame_in": 1001,
"frame_out": 1051
},
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T11:00:00Z"
}
]