Queries the manual review history.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | GetAuditHistory |
The operation that you want to perform. Set the value to GetAuditHistory. |
VideoId | String | Yes | 93ab850b4f6f44*****6e91d24d81d4 |
The ID of the video. |
PageNo | Long | No | 1 |
The number of the page to return. Default value: 1. |
PageSize | Long | No | 10 |
The number of entries to return on each page. Default value: 10. Maximum value: 100. |
SortBy | String | No | CreationTime:Desc |
The sorting rule of the results. Valid values:
|
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
Histories | Array of History |
The review records. |
|
Auditor | String | auditor |
The reviewer. |
Comment | String | Contains nudity |
The review comments, which are provided by the reviewer. |
CreationTime | String | 2017-01-11T12:00:00Z |
The time when the review record was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. |
Reason | String | Pornographic video |
The reason why the video failed the review. If the video failed the review, specify the reason. |
Status | String | Blocked |
The manual review result. Valid values:
|
RequestId | String | 04F0F334-1335-43*****D7-6C044FE73368 |
The ID of the request. |
Status | String | Normal |
The manual review result. Valid values:
|
Total | Long | 2 |
The total number of review records. |
Examples
Sample requests
https://vod.{ApiRegion}.aliyuncs.com/?Action=GetAuditHistory
&VideoId=93ab850b4f6f44*****6e91d24d81d4
&<Common request parameters>
Sample success responses
XML
format
<GetAuditHistoryResponse>
<RequestId>04F0F334-1335-43*****D7-6C044FE73368</RequestId>
<Status>Blocked</Status>
<Total>2</Total>
<Histories>
<CreationTime>2017-12-18T07:39:00Z</CreationTime>
<Status>Blocked</Status>
<Reason>Pornographic video</Reason>
<Comment>Contains nudity</Comment>
</Histories>
<Histories>
<CreationTime>2017-12-18T07:30:00Z</CreationTime>
<Status>Normal</Status>
<Reason></Reason>
<Comment></Comment>
</Histories>
</GetAuditHistoryResponse>
JSON
format
{
"RequestId": "04F0F334-1335-43*****D7-6C044FE73368",
"Status": "Blocked",
"Total":2,
"Histories":[
{
"CreationTime": "2017-12-18T07:39:00Z",
"Status": "Blocked",
"Reason": "Pornographic video",
"Comment": "Contains nudity"
},
{
"CreationTime": "2017-12-18T07:30:00Z",
"Status": "Normal",
"Reason": "",
"Comment": ""
}
]
}
Error codes
For a list of error codes, visit the API Error Center.