此接口用于查询指定时间范围内截图功能的用量。
参数 | 类型 | 是否必选 | 描述 |
---|---|---|---|
Action | String | 是 | 接口名称。当前接口取值为 DescribeVodSnapshotData 。 |
Version | String | 是 | 接口版本。当前接口取值为 2020-08-01 。 |
SpaceList | Array of String | 否 | 点播空间名列表。 说明 如果是 GET 请求,此参数类型为 String,多个空间名之间用 |
SnapshotType | String | 否 | 截图类型。取值如下:
|
TaskStageList | Array of String | 否 | 任务类型。取值如下:
说明 如果是 GET 请求,此参数类型为 String,多个任务类型之间用 |
StartTime | String | 是 | 查询的起始时间。日期格式要求符合 RFC3339 规范。例如:2022-04-18T20:00:00Z 。 |
EndTime | String | 是 | 查询的结束时间。日期格式要求符合 RFC3339 规范。例如: 说明 单次查询的时间跨度不可超过 93 天。 |
Aggregation | Integer | 否 | 聚合的时间粒度。单位为秒。取值如下:
|
DetailFieldList | Array of String | 否 | 详细字段列表。取值如下:
说明 如果参数不为空,会返回更详细的用量数据。 |
参数 | 类型 | 描述 |
---|---|---|
ResponseMetadata | ResponseMetadata | 响应通用信息 |
Result | VodDescribeVodSnapshotData | 响应结果 |
参数 | 类型 | 描述 |
---|---|---|
RequestId | String | 请求 ID |
Action | String | 请求接口 |
Version | String | 版本 |
Service | String | 服务 |
Region | String | 区域 |
Error | ResponseError | 异常信息 |
参数 | 类型 | 描述 |
---|---|---|
Code | String | 错误码 |
Message | String | 详细错误信息 |
参数 | 类型 | 描述 |
---|---|---|
SpaceList | Array of String | 点播空间列表。 |
SnapshotType | String | 截图类型。取值如下:
|
TaskStageList | Array of String | 任务类型。取值如下:
|
StartTime | String | 查询的起始时间。日期格式要求符合 RFC3339 规范。例如:2022-04-18T20:00:00Z 。 |
EndTime | String | 查询的结束时间。日期格式要求符合 RFC3339 规范。例如:2022-04-18T20:00:00Z 。 |
DetailFieldList | Array | 详细字段列表。取值如下:
|
Aggregation | Integer | 聚合的时间粒度。单位为秒。取值如下:
|
TotalSnapshotData | Integer | 所选时间段的截图总张数。 |
SnapshotDataList | Array of SnapShotItem | 截图用量具体数据。 |
SnapshotDetailDataList | Array of SnapShotDetailItem | 各种任务类型的截图用量。 |
参数 | 类型 | 描述 |
---|---|---|
Space | String | 点播空间名。 |
StageTask | String | 任务类型。取值如下:
|
Total | Integer | 截图张数。 |
SnapshotDataList | Array of SnapShotItem | 截图用量具体数据。 |
参数 | 类型 | 描述 |
---|---|---|
Time | String | 时间。 |
Count | Integer | 截图张数。 |
如果用 POST 方式发起请求,示例如下:
POST https://vod.volcengineapi.com?Action=DescribeVodSnapshotData&Version=2020-08-01 HTTP/1.1 Content-Type: application/json { "Region": "cn-north-1", "SpaceList": ["test"], "StartTime": "2021-04-13T00:00:00+08:00", "EndTime": "2021-04-14T00:00:00+08:00", "TaskStageList": ["busy","free"], "DetailFieldList": ["TaskStage"], "Aggregation": 3600 }
如果用 GET 方式发起请求,示例如下:
GET https://vod.volcengineapi.com?Action=DescribeVodSnapshotData&Version=2020-08-01&DomainList=www.test.com&StartTime=2022-04-18T20%3A00%3A00Z&EndTime=2022-04-18T20%3A00%3 &SpaceList=test&Aggregation=3600&TaskStageList=busy,free HTTP/1.1
HTTP/1.1 200 OK Content-Length: 190 Content-Type: application/json { "ResponseMetadata":{ "RequestId": "201806041104***100232280022D30", "Action": "DescribeVodSnapshotData", "Version": "2020-08-01", "Service": "vod", "Region": "cn-north-1" }, "Result":{ "SpaceList": ["test"], "StartTime": "2021-04-13T00:00:00+08:00", "EndTime": "2021-04-14T00:00:00+08:00", "TaskStageList": ["busy","free"], "DetailFieldList": ["TaskStage"], "Aggregation": 3600, "TotalSnapshotData": 100, "SnapshotDataList": [ { "Time": "2022-04-13T00:00:00+08:00", "Count": 100, } ], "SnapshotDetailDataList": [ { "TaskStage": "busy", "SnapshotDataList": [ { "Time": "2022-04-13T00:00:00+08:00", "Count": 50, } ] }, { "TaskStage": "free", "SnapshotDataList": [ { "Time": "2022-04-13T00:00:00+08:00", "Count": 50, } ] }, ] } }
HTTP/1.1 400 Bad Request Content-Length: 190 Content-Type: application/json { "ResponseMetadata":{ "RequestId": "20180604110***00232280022D30", "Action": "DescribeVodSnapshotData", "Version": "2020-08-01", "Service": "vod", "Region": "cn-north-1", "Error":{ "Code": "280400", "Message": "must have X-Top-Account-Id" } } }
详见视频点播公共错误码。
点播 OpenAPI 提供了配套的服务端 SDK,支持多种编程语言,帮助您实现快速开发。建议使用服务端 SDK 来调用 API。此 API 各语言调用的示例代码,请参考如下: