GiantWaveAI(API Docs 2.1)
  1. Task
GiantWaveAI(API Docs 2.1)
  • API Docs
  • Giantwave AI
    • Video
      • updateVideo
      • createVideo
      • getVideoInfomation
      • getVideoList
    • TTSTmp
      • getTtsTemplateInfo
      • getTtsTempalteList
    • Template
      • 获取模板详细信息
      • 查询模板列表
    • Task
      • 新增任务
        POST
      • 修改任务
        PUT
      • 任务状态回退
        POST
      • 获取任务详细信息
        GET
      • 查询任务列表
        GET
    • TaskBatch
      • 创建任务
      • 获取任务批次详细信息
      • 查询任务批次列表
    • post
      • putPosts
      • generatePosts
      • getPostsByTask
      • getPosts
      • getPostsList
    • material
      • getMaterial
      • getMaterialList
    • materialMark
      • 批量修改素材个性标注
      • 导出素材个性标注列表
      • 获取素材个性标注详细信息
      • 查询素材个性标注列表
      • 删除素材个性标注
    • materialLib
      • 获取素材库详细信息
      • 查询素材库列表
    • digitalHuman
      • putDigitalHumanTemplate
      • getDigitalHumanTemplate
      • getDigitalHumanTemplateList
    • GiantWave_material
      • 分页查询素材列表
  • login
    POST
  1. Task

任务状态回退

POST
/shipin/task/audits
任务状态回退

Request

Header Params
Authorization
string 
optional
Default:
Bearer {{token}}
Body Params application/json
任务业务对象 sp_task
createBy
string <string>
optional
创建者
createTime
string <date-time>
optional
创建时间
updateBy
string <string>
optional
更新者
updateTime
string <date-time>
optional
更新时间
params
object 
optional
请求参数
Additional properties
object 
optional
id
integer <int64>
required
任务id
ids
array[integer <int64>]
optional
任务id集合
batchId
integer <int64>
required
任务批次id
tmpId
integer <int64>
required
模板id
deviceId
string <string>
required
设备id
name
string <string>
required
任务名称
status
string <string>
required
任务状态
tmpParamValue
string <string>
required
模板值,通过json数组存储
effects
string <string>
optional
效果
feedback
string <string>
required
反馈的信息
Example
{
    "createBy": "string",
    "createTime": "2019-08-24T14:15:22Z",
    "updateBy": "string",
    "updateTime": "2019-08-24T14:15:22Z",
    "params": {
        "property1": {},
        "property2": {}
    },
    "id": 0,
    "ids": [
        0
    ],
    "batchId": 0,
    "tmpId": 0,
    "deviceId": "string",
    "name": "string",
    "status": "string",
    "tmpParamValue": "string",
    "effects": "string",
    "feedback": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://192.168.2.91:8080/shipin/task/audits' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "createBy": "string",
    "createTime": "2019-08-24T14:15:22Z",
    "updateBy": "string",
    "updateTime": "2019-08-24T14:15:22Z",
    "params": {
        "property1": {},
        "property2": {}
    },
    "id": 0,
    "ids": [
        0
    ],
    "batchId": 0,
    "tmpId": 0,
    "deviceId": "string",
    "name": "string",
    "status": "string",
    "tmpParamValue": "string",
    "effects": "string",
    "feedback": "string"
}'

Responses

🟢200OK
application/json
Body
响应信息主体
code
integer <int32>
optional
msg
string 
optional
data
object 
optional
Example
{
    "code": 0,
    "msg": "string",
    "data": {}
}
Modified at 2023-11-03 09:21:02
Previous
修改任务
Next
获取任务详细信息
Built with