Clips
Update a clip
Update a clip's name, ordering, cuts, background, or transition. At least one field must be provided.
patch/v1/videos/{id}/clips/{clipId}
Path parameters
idstring required
Video identifier
Example:vid_abc123def456
Video identifier
clipIdstring required
Clip identifier
Example:cl_xyz789ghi012
Clip identifier
Request body
Example request
{
"animatedCursor": true,
"background": {
"color": "#000000ff",
"gradientAngle": 45,
"gradientColor1": "#ff0080ff",
"gradientColor2": "#7928caff",
"sourceId": "su_abc123",
"type": "solid",
"videoDurationSeconds": 12.4
},
"cuts": [
{
"durationMs": 750,
"startTimeMs": 1500
}
],
"microphoneVolume": 0.4,
"name": "Updated intro",
"order": 2,
"systemAudioVolume": 1.5,
"transition": "default"
}Response
OK
Example response
{
"clip": {
"animatedCursor": true,
"background": {
"color": "#000000ff",
"gradientAngle": 45,
"gradientColor1": "#ff0080ff",
"gradientColor2": "#7928caff",
"sourceId": "su_abc123",
"type": "solid",
"videoDurationSeconds": 12.4
},
"createdAt": "2026-01-15T10:30:00.000Z",
"cuts": [
{
"durationMs": 750,
"startTimeMs": 1500
}
],
"durationSeconds": 12.5,
"id": "cl_xyz789ghi012",
"layoutSceneType": "combi",
"maxDurationSeconds": 14.2,
"microphoneVolume": 0.4,
"name": "Intro",
"transition": "default",
"updatedAt": "2026-01-15T14:45:00.000Z",
"videoId": "vid_abc123def456"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.