delete
https://api-v2.pandavideo.com.br/folders/
Soft-deletes a folder (sets status=false; data is preserved). To restore, PUT status=true. Videos inside keep their folder_id reference.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /folders/{folder_id}
{folder_id}Soft-deletes a folder. The folder data is preserved on the platform; it is just hidden from the active listing (status becomes false). To restore it, use Update folder with { "status": true }.
AuthorizationRequires a valid Panda API token sent in the
Authorizationheader (no Bearer prefix).
HTTP Method & Path
DELETE /folders/{folder_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 |
|---|---|---|---|---|
folder_id | string (uuid) | Yes | Unique identifier of the folder to delete. | uuid |
Heads up: this is a soft delete — videos inside the folder are NOT deleted. They keep theirfolder_idreference and remain accessible.
Response
Success Response (200)
Returns a confirmation (typically an empty body or a { "message": "..." }).
Error Responses
- 401 Unauthorized — Missing or invalid API token.
- 404 Not Found — Folder not found.
- 500 Internal Server Error — Server-side error.
Example Usage
cURL
curl -X DELETE \
'https://api-v2.pandavideo.com.br/folders/<folder_id>' \
-H 'Authorization: your_api_token_here' \
-H 'Accept: application/json'