post https://api.gumlet.com/v1/video/assets//thumbnail
Use any image file to use as thumbnail
After getting upload_url
from above api response
upload_url
from above api responseUse that upload_url
value With PUT request and insert your desired image file in Body Binary.
Example Request
curl --location --request PUT '${upload_url}' \
--header 'Content-Type: image/png' \
--data '@/Users/Downloads/Gumlet_Image.png'
# upload_url is the response you get from above asset thumbnail api
# here -- data value will be replaced with your local image source path
On a success, you'll get 200 response code.