您可通过此接口获取主账号下默认分类或指定分类及其子分类的信息。
请求频率:单用户请求频率限制为 1 次/秒。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息详见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetVideoLibraryFolderTree | 接口名称。当前 API 的名称为 GetVideoLibraryFolderTree 。 |
Version | String | 是 | 2023-08-01 | 接口版本。当前 API 的版本为 2023-08-01 。 |
FolderId | Long | 否 | 0 | 分类 ID。默认取值为 0 ,表示查询默认分类下的所有子分类。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
FolderNode | Object of FolderNode | - | 分类信息。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
FolderId | Long | 0 | 分类 ID。 |
FolderName | String | 默认分类 | 分类名称。 |
Children | Array of FolderNode | - | 子分类信息。 |
GET https://livesaas.volcengineapi.com/?Action=GetVideoLibraryFolderTree&Version=2023-08-01&FolderId=0
{ "ResponseMetadata": { "RequestId": "202404151254007138CAB922F9EC1CBF91", "Action": "GetVideoLibraryFolderTree", "Version": "2023-08-01", "Service": "livesaas", "Region": "cn-north-1", "SystemTime": 1713156841 }, "Result": { "FolderNode": { "FolderId": 0, "FolderName": "默认分类", "Children": [ { "FolderId": 17959466895819, "FolderName": "子分类名称1", "Children": [ { "FolderId": 17959465298105, "FolderName": "子分类名称2", "Children": [] } ] } ] } } }