查询已创建的录制模板列表。
使用 GET 方式发起请求。
下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考「公共参数」。
字段 | 位置 | 类型 | 必填 | 说明 | 值 |
---|---|---|---|---|---|
Action | Query | String | 是 | 公共参数,OpenAPI 接口名称 | ListRecordTemplates |
Version | Query | String | 是 | 公共参数,OpenAPI 接口版本 | 2021-01-01 |
Order | Query | Integer | 否 | 查询结果排序方式 | 可选枚举值:
|
通用返回参数,请参考 ResponseMetadata 结构体说明。
Result 字段包含以下参数:
字段 | 类型 | 说明 |
---|---|---|
Templates | Array of objects | 查询到的录制模板列表,参考以下 List<Templates> 结构说明 |
List<Templates>
结构说明
字段 | 类型 | 说明 |
---|---|---|
TemplateName | String | 模板名称 |
TemplateID | String | 模板 ID |
TemplateType | String | 模板类型 |
CreatedAt | String | 创建时间 |
UpdatedAt | String | 更新时间 |
Record | Array of objects | 查询到的截图模板列表,参考以下 录制配置结构说明 |
录制配置结构说明
字段 | 类型 | 说明 |
---|---|---|
RecordDuration | Integer | 单个视频文件录制时长,单位毫秒 |
Type | String | 录制方式:
|
Format | String | 视频存储格式:
|
GET https://open.volcengineapi.com?Action=ListRecordTemplates &Version=2021-01-01 &<公共请求参数>
{ "ResponseMetadata": { "RequestId": "2021120819040601021209722913001599", "Action": "ListRecordTemplates", "Version": "2021-01-01", "Service": "aiotvideo", "Region": "cn-north-1" }, "Result": { "PageNumber": 1, "PageSize": 20, "TotalCount": 2, "Templates": [ { "TemplateID": "1f5704dc-8d31-4547-9534-1ac40bf06879", "TemplateName": "online-record-1022-bj", "TemplateType": "record", "Record": { "RecordDuration": 600000, "Type": "realtime", "Format": "mp4" }, "CreatedAt": "2021-10-22T14:08:43+08:00", "UpdatedAt": "2021-12-07T10:06:08+08:00" }, { "TemplateID": "535aa5e6-3388-42e9-bd7d-a1ee6616040c", "TemplateName": "hyzrecord01", "TemplateType": "record", "Record": { "RecordDuration": 600000, "Type": "realtime", "Format": "mp4" }, "CreatedAt": "2021-11-11T14:56:08+08:00", "UpdatedAt": "2021-11-22T18:18:27+08:00" } ] } }