# Function description

This interface provides synthesis progress data information.

The interface needs to implement the following business logic:

  1. According to the task ID, save the synthesis progress to the database

# Request

# Request example

POST / compileProgress
HTTP
Host: <host>
Content-Type: application/json

# Request Parameters

none

# Request Headers

none

# Request Body

The request body is a json string of pieces of information, for example:

{
    "taskId": "1",            
    "progress": "1",         
}
Name Description Type
taskId task ID string
progress task progress string

# response

# response headers

There are no special response headers for this interface.

# response body

This interface has no special response body.