API Reference
Videos
Thumbnails
Reset

Resetting the video thumbnail

Reset thumbnail

Resetting the video thumbnail to it's auto generated version is done by sending a DELETE request to the /videos/:videoId/thumbnail endpoint.

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

Response

The response is the new Video object with the original thumbnail URL.

{
  "id": "[VIDEO_ID]",
  "title": "Video title",
  "src": {
    "thumbnailUrl": string,
    ...
  }
}