Used to delete a folder.
The "Delete folder" endpoint allows you to delete a folder in your PandaVideo account. By making a DELETE request to the specified URL (https://api-v2.pandavideo.com.br/folders/{folder_id}), you can remove the folder and all its contents from your account.
To delete a folder, you need to provide the following information:
Parameter | Type | Required | Description |
---|---|---|---|
folder_id | string | Yes | The ID of the folder you want to delete. |
Responses
200
: Success. Folder deleted successfully.400
: Bad request. Check the request parameters or syntax.401
: Unauthorized. The request lacks valid authentication credentials.404
: Not found. The requested resource (folders) was not found.500
: Internal server error. Please try again later.
By utilizing the "Delete folder" endpoint, you can programmatically remove a folder and its contents from your PandaVideo account. This can be useful when you want to clean up your account or remove unnecessary folders.
Recipes
The Recipes section provides a collection of code examples and sample implementations to help you understand and use the API effectively. Each recipe includes commented code that explains the purpose and functionality of each line. You can refer to these recipes as a guide to implement specific features or interact with the API endpoints.