Update video
Developing
PUT
/projects/{projId}/videos/{videoId}
Update a video under a project
PUT
/projects/<project_id>/videos/<video_id>
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.vidinfra.com/v1/projects/f32a0116-fe11-454c-8e6a-5ff4101882e5/videos/974135e3-76e2-45f6-8dd0-31a4045ab681' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Updated Video",
"description": "This is an updated video",
"is_public": true,
"tags" : ["Updated tag1", "updated tag 2"]
}'
Response Response Example
200 - OK - Success
{"message":"Videos create.","result":{"name":"myvideo2","vod_transcoding_profiles_id":"00000000-0000-0000-0000-000000000000","status":"uploading","upload_id":null,"description":null,"source":null,"raw_size":null,"duration":null,"transcoding_size":null,"external_video_id":null,"category":null,"id":"e61f7879-3fb3-45ff-86d9-e266447ddf68","collection_id":"16f1b34c-8238-4945-b3be-726ff670ce94","user_id":"00000000-0000-0000-0000-000000000000","project_id":"16f1b34c-8238-4945-b3be-726ff670ce94","is_public":false,"mp4_support":false,"created_at":"2024-02-11T10:28:30.174844307Z","updated_at":"2024-02-11T10:28:30.174844377Z","deleted_at":null,"created_by":"c23c6582-47cf-4960-ad0e-2aa218e78e64","updated_by":"c23c6582-47cf-4960-ad0e-2aa218e78e64","deleted_by":null},"success":true}
Request
Path Params
projId
stringÂ
required
Example:
f32a0116-fe11-454c-8e6a-5ff4101882e5
videoId
stringÂ
required
Example:
974135e3-76e2-45f6-8dd0-31a4045ab681
Body Params application/json
Responses
Modified at 2025-06-19 04:59:01