Delete video thumbnail

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
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /thumbs/{video_id}

Deletes a custom thumbnail for a video. After deletion, the video falls back to auto-generated thumbnails for the corresponding kind.

📘

Authorization

Requires a valid Panda API token sent in the Authorization header (no Bearer prefix).

HTTP Method & Path

DELETE /thumbs/{video_id}

Base URL: https://api-v2.pandavideo.com.br

Authentication Requirements

Security SchemeHeaderNote
API KeyAuthorizationPanda API token (without Bearer prefix)

Parameters

NameInTypeRequiredDescription
AuthorizationheaderstringYesPanda API token (without Bearer prefix)

Path Parameters

FieldTypeRequiredDescriptionConstraints
video_idstring (uuid)YesID of the video.uuid

Query Parameters

FieldTypeRequiredDescriptionConstraints
typestringNoThumbnail kind to delete. Omit to remove the start (default cover) thumbnail.enum: pause, live, end
thumbNamestring(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: for type=pause, multiple thumbnails may coexist (returned in pauseThumbnail[] by GET). You must pass thumbName to 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 thumbName when required, or invalid type.
  • 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'

Recipes

Path Params
uuid
required

Unique identifier of the video

Query Params
string
enum

Type of thumbnail to delete

Allowed:
string

Specific thumbnail name to delete (for pause type)

Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json