post https://api-v2.pandavideo.com/thumbs/
Uploads a custom thumbnail for a video, replacing any existing custom thumbnail
POST /thumbs/{video_id}
Detailed Description
Uploads a custom thumbnail for a video. If a custom thumbnail already exists, this operation replaces it. You may optionally target a specific thumbnail type.
HTTP Method & Path
POST /thumbs/{video_id}
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
Authorization | header | string | Yes | Panda API token |
video_id | path | string (uuid) | Yes | Unique identifier of the video. |
type | query | string (enum: pause , live , end ) | No | Target thumbnail type to upload. |
Request Body
Content-Type: multipart/form-data
Field | Type | Required | Description |
---|---|---|---|
file | string (binary) | Yes | Image file for the thumbnail. Supported formats: JPEG, PNG, or GIF. |
Notes
- When
type=pause
, the service manages pause-screen thumbnails (array behavior is implied in the schema). - When
type=live
, the upload sets the live thumbnail. - When
type=end
, the upload sets the end-screen thumbnail.
Example
Usage example available in our github