# Function Description
To get the jobId
of transcoding task.
# Request
# request example
GET /recognition/info HTTPS
Host: <host>
Content-Type: application/json
Authorization: <AuthString>
# Request Headers
Name | Description | Type | Mandatory |
---|---|---|---|
Authorization | User token information | string | true |
# Request Parameters
Field | Explain | Type | Mandatory |
---|---|---|---|
id | speech recognitions id | number | true |
# Request Body
none
# Response
# Response Header
No special response header
# Response Body
Successful Response Body :
{
"code": 0,
"enMsg": "success",
"msg": "成功",
"data": {
"id": 25,
"projectId": 123,
"url": "url",
"userId": 1,
"uuid": "01f18e3c6d14445daf1550fc7d16ea60",
"jobId": 192
}
}
Field | Explain | Type | Mandatory |
---|---|---|---|
id | task id | number | true |
projectId | project id | number | true |
url | resource url of recognizition | string | true |
userId | user id | number | true |
uuid | Universally Unique Identifier | string | true |
jobId | task id | number | true |
Failed Response Body:
{
"code": <errorCode>,
"enMsg": <errorMessage>,
"msg": <errorMessage>,
"data": null
}