post https://api-v2.pandavideo.com/folders
Creates a new folder for the authenticated user
POST /folders
Detailed Description
Creates a new folder for the authenticated user. Use this to establish root-level folders or nested folders by providing a parent_folder_id
.
HTTP Method & Path
POST /folders
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
Parameters
Name | Type | Required | Description |
---|---|---|---|
Authorization | string (header) | Yes | Panda API token |
Request Body
Schema: CreateFolderRequest
CreateFolderRequest
Name | Type | Required | Description |
---|---|---|---|
name | string | Yes | Folder name. minLength=1 , maxLength=255 . |
parent_folder_id | string (uuid) | No | Parent folder ID to create a nested folder. null for root. |