# Function Description

The task scheduling is used to return the completion information of sentences segmentation to the task creator

# Request

# request example

POST /job/splitWord/complete HTTP
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": {
    "code": 0,
    "url": ""
  }
}
Name Type Description Mandatory
uuid string task uuid true
type int 0-transcoding 1-composing
5-audio alignment
true
data object information data of finishing true
code int result code,0-success, others-failed true
url string url of json after done,and format is:
[
   {
     "bg": "0",                  // start-time
     "ed": "1850",             // end-time
     "onebest": "今天",     // content after Sentences segmentation
     "speaker": "0"           // ignore please
  }
  ...
]
true

# Response

# Response Header

No special response header

# Response Body

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