POST
/
videos
/
{VIDEO_ID}
/
thumbnail
curl --request POST \
  --url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/thumbnail \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>"
}'
{
  "success": true,
  "result": {
    "url": "<string>"
  },
  "links": {},
  "errors": []
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

VIDEO_ID
string
required

ID of the video

Body

application/json
url
string

The URL of a .jpg file

Response

200 - application/json
success
boolean
required
result
object
required
links
object
required
errors
object[]
required