Direct Thumbnail Upload

Upload thumbnail directly to Gumlet

Using REST API (Thumbnail Upload)

1. Create a Thumbnail upload URL:

Use the REST API and get the upload_url from Update thumbnail via upload API.

curl --request POST \
     --url https://api.gumlet.com/v1/video/assets/{asset_ID}/thumbnail \
     --header 'Authorization: Bearer {apiKey}' \
     --header 'accept: application/json'

Replace the asset_id with the video asset ID.

2. Upload a thumbnail file

curl --location --request PUT '<upload_url>' \
--data '<YOUR_FILE_PATH>'

On successful upload, you will get a 200 OK response.