# Function Description

The task scheduling is used to return the completion information of transcoding progress to the task creator

# Request

# request example

POST /job/transcode/progress HTTPS
Host: <host>
Content-Type: application/json

# Request Headers

none

# Request Parameters

none

# Request Body

request body is JSON character string,for example:

{
  "uuid": "uuid",
  "type": 0,
  "data": {
    "progress": 0
  }
}
Field Type Explain Mandatory
uuid string task uuid true
type int task type
0-transcoding
1- composing
true
data object progress data true
progress double progress information true

# Response

# Response Header

No special response header

# Response Body

{
  "code": 0,
  "message": "",
  "data": null
}