delete
https://api-v2.pandavideo.com.br/videos/
Permanently deletes a custom field from a video (by id query). Irreversible.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /videos/{video_id}?custom_fields&id={custom_field_id}
{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.
AuthorizationRequires a valid Panda API token sent in the
Authorizationheader (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 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 that owns the field. | uuid |
Query Parameters
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
custom_fields | string | Yes | Sentinel flag — must be present (no value). | flag |
id | string (uuid) | Yes | ID 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 fromDelete folderwhich is soft-delete).
Response
Success Response (200)
{
"message": "Custom field deleted successfully"
}Response Schema
| Field | Type | Description |
|---|---|---|
message | string | Human-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'