v1

latestOpenAPI 3.1.02026-07-24650272.2 KB
API Endpoints

List Folders

List folders for a video workspace. Use parent_id to list only folders inside a specific parent folder.

get/video/workspaces/{workspace_id}/folders

Path parameters

workspace_idstring required

Video workspace id.

Query parameters

parent_idstring

Parent folder id. Send null to list root folders.

Response

200

idstring
namestring
video_source_idstring
parent_idstring nullable
pathstring[]
path_namesstring[]
depthinteger
subdirectory_countinteger
asset_countinteger
created_atstring
updated_atstring

Example response

[
  {
    "id": "67e4f01d403562dbea6542d4",
    "name": "Course Assets",
    "video_source_id": "67e4ece9403562dbea65425f",
    "path": [
      "67e4f01d403562dbea6542d4"
    ],
    "path_names": [
      "Course Assets"
    ],
    "subdirectory_count": 2,
    "asset_count": 12,
    "created_at": "2026-03-18T10:00:00.000Z",
    "updated_at": "2026-03-18T10:15:00.000Z"
  }
]