v1

latestOpenAPI 3.1.02026-07-2416666272.6 KB
Folders

List user folders

Lists folders in the account. Optional filters by parent_folder_id (direct children only) and status (active vs inactive).

get/folders

Query parameters

parent_folder_idstring uuid

Filter folders by parent folder ID

statusboolean

Filter folders by status

Response

List of user folders retrieved successfully

messagestring

Example response

{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "My Video Folder",
      "status": true,
      "created_at": "2025-08-01T10:30:00.000Z",
      "updated_at": "2025-08-01T10:30:00.000Z"
    }
  ],
  "message": "Success"
}