# Function Description
View task information in batches, including transcoding tasks\synthesis tasks\voice transcription tasks
# Request
# Request example
POST /job/batch/info
Host: <host>
Content-Type: application/json
Authorization: <AuthString>
# Request Headers
Name | Description | Type | Mandatory |
---|---|---|---|
Authorization | User token information | string | true |
# Request Parameters
none
# Request Body
{
"jobIds": [
1234,
1235,
1236
]
}
# Response
# Response Header
No special response header
# Response Body
Successful Response Body :
{
"code": 0,
"enMsg": "success",
"msg": "成功",
"data": {
"1234": {
"jobId": 1234,
"status": 2,
"progress": 100,
"createdAt": 1632770652000,
"jobType": 1,
"resourceId": 0,
"resourceType": 0,
"projectId": 6,
"uuid": "c4e8f7d2e87b4a0d97df00b27a6b93ec",
"recognitionResultUrl": null,
"title": null
},
"1235": {
"jobId": 1235,
"status": 2,
"progress": 100,
"createdAt": 1632770652000,
"jobType": 1,
"resourceId": 0,
"resourceType": 0,
"projectId": 6,
"uuid": "c4e8f7d2e87b4a0d97df00b27a6b93ec",
"recognitionResultUrl": null,
"title": null
}
}
}
Name | Description | Type | Required |
---|---|---|---|
jobId | job ID | number | yes |
status | task status 0: normal, 1: completed, 2: failed, 3: timeout | number | yes |
progress | task progress | number | yes |
createdAt | creation timestamp in milliseconds | number | yes |
jobType | job type, 1: upload job, 2: synthesis job, 3: speech transcription job | number | yes |
resourceId | resource ID | number | yes |
resourceType | resource type 1: video 2: audio 3: image 4: identification | number | yes |
projectId | project ID | number | yes |
uuid | task unique identifier | string | yes |
recognitionResultUrl | After the task is completed, the url of the recognition result will be displayed in the modified field | string | Yes |
title | task name | string | yes |
Failed Response Body:
{
"code": <errorCode>,
"enMsg": <errorMessage>,
"msg": <errorMessage>,
"data": null
}