Delete custom field

Permanently deletes a custom field from a video (by id query). Irreversible.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /videos/{video_id}?custom_fields&id={custom_field_id}

Permanently deletes a custom field from a video. The field is identified by id (query parameter). This action is irreversible — the value cannot be recovered.

📘

Authorization

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

HTTP Method & Path

DELETE /videos/{video_id}?custom_fields&id={custom_field_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 that owns the field.uuid

Query Parameters

FieldTypeRequiredDescriptionConstraints
custom_fieldsstringYesSentinel flag — must be present (no value).flag
idstring (uuid)YesID of the custom field to delete. Obtain it from Get video custom fields.uuid
⚠️

Heads up: this is a hard delete — the custom field is permanently removed (different from Delete folder which is soft-delete).

Response

Success Response (200)

{
  "message": "Custom field deleted successfully"
}

Response Schema

FieldTypeDescription
messagestringHuman-readable confirmation message.

Error Responses

  • 401 Unauthorized — Missing or invalid API token.
  • 404 Not Found — Video or custom field not found.
  • 500 Internal Server Error — Server-side error.

Example Usage

cURL

curl -X DELETE \
  'https://api-v2.pandavideo.com.br/videos/<video_id>?custom_fields&id=<custom_field_id>' \
  -H 'Authorization: your_api_token_here' \
  -H 'Accept: application/json'

Recipes

Path Params
uuid
required

Unique identifier for the video

Query Params
string
enum
required

Set to 'true' to delete a custom field

Allowed:
uuid
required

Custom field ID to delete

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