Delete folder

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

DELETE /folders/{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 }.

📘

Authorization

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

HTTP Method & Path

DELETE /folders/{folder_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
folder_idstring (uuid)YesUnique identifier of the folder to delete.uuid
⚠️

Heads up: this is a soft delete — videos inside the folder are NOT deleted. They keep their folder_id reference 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'

Recipes

Path Params
uuid
required

Unique identifier of the folder

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