delete
https://api-v2.pandavideo.com.br/thumbs/
Deletes a custom thumbnail (start/pause/live/end). For pause, thumbName query is required to target the specific entry. After deletion the video falls back to auto-generated thumbnails.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /thumbs/{video_id}
{video_id}Deletes a custom thumbnail for a video. After deletion, the video falls back to auto-generated thumbnails for the corresponding kind.
AuthorizationRequires a valid Panda API token sent in the
Authorizationheader (no Bearer prefix).
HTTP Method & Path
DELETE /thumbs/{video_id}
Base URL: https://api-v2.pandavideo.com.br
Authentication Requirements
| Security Scheme | Header | Note |
|---|---|---|
| API Key | Authorization | Panda API token (without Bearer prefix) |
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Authorization | header | string | Yes | Panda API token (without Bearer prefix) |
Path Parameters
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
video_id | string (uuid) | Yes | ID of the video. | uuid |
Query Parameters
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
type | string | No | Thumbnail kind to delete. Omit to remove the start (default cover) thumbnail. | enum: pause, live, end |
thumbName | string | (required for pause) | Specific pause-thumbnail filename to remove. When multiple pause thumbnails exist, use this to target one. | filename returned by GET |
Heads up: fortype=pause, multiple thumbnails may coexist (returned inpauseThumbnail[]by GET). You must passthumbNameto specify which one to remove; otherwise the API may delete a non-targeted entry or return an error.
Response
Success Response (200)
Returns a confirmation (typically empty body or a small JSON message).
Error Responses
- 400 Bad Request — Missing
thumbNamewhen required, or invalidtype. - 401 Unauthorized — Missing or invalid API token.
- 404 Not Found — Video or specific thumbnail not found.
- 500 Internal Server Error — Server-side error.
Example Usage
cURL — delete start thumbnail (falls back to auto-generated)
curl -X DELETE \
'https://api-v2.pandavideo.com.br/thumbs/<video_id>' \
-H 'Authorization: your_api_token_here'cURL — delete a specific pause thumbnail
curl -X DELETE \
'https://api-v2.pandavideo.com.br/thumbs/<video_id>?type=pause&thumbName=pause-abc123.jpg' \
-H 'Authorization: your_api_token_here'cURL — delete end thumbnail
curl -X DELETE \
'https://api-v2.pandavideo.com.br/thumbs/<video_id>?type=end' \
-H 'Authorization: your_api_token_here'