Skip to Content

Update a video

Update video

Updating a single video is done by sending a PATCH request to the /videos/:id endpoint.

If you are looking for a way to replace a video file, please refer to the replace video section.

curl -X PATCH https://app.ignitevideo.cloud/api/videos/[VIDEO_ID] \ -H "Authorization: Bearer YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{"title": "New video title"}'

Response

The response is an object containing the Video object and an update message text, or, if the video is not found, a 404 status code with a matching error message in the body is returned.

{ doc: { "id": "[VIDEO_ID]", "title": "New video title", ... }, message: "Updated successfully." }