put https://api-v2.pandavideo.com/folders/
Updates an existing folder's properties
PUT /folders/{folder_id}
Detailed Description
Updates properties of an existing folder. Use this to rename a folder, move it within the hierarchy, or toggle its status.
HTTP Method & Path
PUT /folders/{folder_id}
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
Parameters
Name | Type | Required | Description |
---|---|---|---|
Authorization | string (header) | Yes | Panda API token |
folder_id | string (path, uuid) | Yes | Unique identifier of the folder to update. |
Request Body
Schema: UpdateFolderRequest
UpdateFolderRequest
Name | Type | Required | Description |
---|---|---|---|
name | string | No | New folder name. minLength=1 , maxLength=255 . |
parent_folder_id | string (uuid) | No | New parent folder ID. Use null to move to root. |
status | boolean | No | Folder status: true (active) or false (inactive). |