# Function description
The task scheduler is used to return the transcoding progress information to the task initiator
# Request
# Request example
POST /job/transcode/progress HTTPS
Host: <host>
Content-Type: application/json
# Request Parameters
none
# Request Headers
none
# Request Body
The request body is a json string, for example:
{
"uuid": "uuid",
"type": 0,
"data": {
"progress": 0
}
}
Name | Type | Description | Mandatory |
---|---|---|---|
uuid | string | task UUID | Yes |
type | int | Task type, 0--transcoding, 1--synthesis | Yes |
data | object | progress data | Yes |
progress | double | progress value | Yes |
# Response
# Response Header
No special response header
# Response Body
{
"code": 0,
"message": "",
"data": null
}