
# 获取语音训练任务审核结果 - ShowJobAuditResult
#### 功能介绍
获取语音训练任务审核结果。
#### 调用方法
请参见[如何调用API](https://support.huaweicloud.com/api-metastudio/metastudio_02_0002.html)。
#### 授权信息
账号具备所有API的调用权限，如果使用账号下的IAM用户调用当前API，该IAM用户需具备调用API所需的权限，具体权限要求请参见[权限和授权项](https://support.huaweicloud.com/api-metastudio/metastudio_02_0071.html)。
#### URI
GET /v1/{project_id}/voice-training-manage/user/jobs/{job_id}/audit-result
表1路径参数 
| 参数         | 是否必选 | 参数类型   | 描述                                                                                            |
|:---|:---|:---|:---|
| project_id | 是    | String | 项目ID，获取方法请参考[获取项目ID](https://support.huaweicloud.com/api-metastudio/metastudio_02_0006.html)。 |
| job_id     | 是    | String | 任务id。                                                                                         |
   
#### 请求参数
无
#### 响应参数
**状态码：200**
表2响应Body参数 
| 参数                  | 参数类型                                                                                                         | 描述       |
|:---|:---|:---|
| system_audit_result | [system_audit_result] object | 系统审核结果。  |
| admin_audit_result  | [admin_audit_result] object   | 管理员审核结果。 |
   
 表3system_audit_result 
| 参数         | 参数类型                                                                                         | 描述                                                                                                                                                                  |
|:---|:---|:---|
| audit_time | Long                                                                                         | 操作时间。 **取值范围：** 0\~2147483647 |
| errors     | Array of [errors] objects | 错误列表。                                                                                                                                                               |
   
 表4errors 
| 参数            | 参数类型   | 描述      |
|:---|:---|:---|
| audio_name    | String | 音频文件名。  |
| text_name     | String | 文本文件名。  |
| error_code    | String | 异常错误码。  |
| error_message | String | 异常错误信息。 |
   
 表5admin_audit_result 
| 参数              | 参数类型   | 描述                                                                                                                                                                  |
|:---|:---|:---|
| message         | String | 审核信息。                                                                                                                                                               |
| attachment_name | String | 附件名称。                                                                                                                                                               |
| attachment_url  | String | 附件下载地址。                                                                                                                                                             |
| audit_time      | Long   | 操作时间。 **取值范围：** 0\~2147483647 |
   
**状态码：400**
表6响应Body参数 
| 参数         | 参数类型   | 描述    |
|:---|:---|:---|
| error_code | String | 错误码。  |
| error_msg  | String | 错误描述。 |
   
#### 请求示例
```
GET https://{endpoint}/v1/3f0924078d1b471c884a5383d4dec9fa/voice-training-manage/user/jobs/26f06524-4f75-4b3a-a853-b649a21aaf66/audit-result
```
#### 响应示例
**状态码：200**
处理成功返回。
```
{
  "system_audit_result" : {
    "audit_time" : 123,
    "errors" : [ {
      "audio_name" : "audio_0.wav",
      "text_name" : "text_0.txt",
      "error_code" : "MSS.12345678",
      "error_message" : "error description"
    } ]
  },
  "admin_audit_result" : {
    "message" : "message",
    "attachment_name" : "attachment_file_name",
    "attachment_url" : "https://attachment_download_url",
    "audit_time" : 123
  }
}
```
#### 状态码
| 状态码 | 描述      |
|:---|:---|
| 200 | 处理成功返回。 |
| 400 | 训练异常。   |
   
#### 错误码
请参见[错误码](https://support.huaweicloud.com/api-metastudio/ErrorCode.html)。
