API Reference
Videos
Delete video

Update a video

Delete video

Deleting a video is done by sending a DELETE request to the /videos/:id endpoint.

curl -X DELETE https://app.ignitevideo.cloud/api/videos/[VIDEO_ID] \ 
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \

Response

The response is the now deleted Video object with a status message, 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: "Deleted successfully."
}