# Function Description
Callback interface for material installation completion
# Request
# Request example
POST /job/installAssets/complete HTTPS
Host: <host>
Content-Type: application/json
Authorization: <AuthString>
Cache-Control: 'no-cache'
# Request Headers
none
# Request Parameters
none
# Request Body
Name | Description | Type | Required |
---|---|---|---|
uuid | id of the material | string | yes |
type | type of material | int | yes |
data | Installation completed information | object | yes |
code | Completion code, 0--success, 1--failure | int | yes |
message | Completion message | string | yes |
fontFamily | font family name | string | yes |
assetsStatus | installation status | object | yes |
# Response
# Response Header
No special response header
# Response Body
{
"code": 0,
"enMsg": "success",
"msg": "成功"
}
Failed Response Body:
{
"code": -1,
"enMsg": "failed",
"msg": "失败"
}