Returns all folders in the account
The "List folders" endpoint allows you to retrieve all folders in your PandaVideo account. By making a GET request to the specified URL (https://api-v2.pandavideo.com.br/folders
), you can fetch the list of folders associated with your account.
The endpoint does not require any query parameters. You can simply send a GET request to retrieve all the folders.
Parameter | Type | Description |
---|---|---|
name | string | The new name for the folder. |
parent_folder_id | string | The new parent folder ID if you want to move the folder. |
Responses
200
: Success. The list of folders was retrieved 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 "List folders" endpoint, you can programmatically retrieve information about the folders in your PandaVideo account. This can be useful for managing and organizing your videos within specific 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.