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

查询任务列表

GET
/shipin/task/list
查询任务列表

Request

Query Params
createBy
string 
optional
创建者
createTime
string 
optional
创建时间
updateBy
string 
optional
更新者
updateTime
string 
optional
更新时间
params
string 
optional
请求参数
id
integer 
required
任务id
ids
array[string]
optional
任务id集合
batchId
integer 
required
任务批次id
tmpId
integer 
required
模板id
deviceId
string 
required
设备id
name
string 
required
任务名称
status
string 
required
任务状态
tmpParamValue
string 
required
模板值,通过json数组存储
effects
string 
optional
效果
feedback
string 
required
反馈的信息
pageSize
integer 
optional
分页大小
pageNum
integer 
optional
当前页数
orderByColumn
string 
optional
排序列
isAsc
string 
optional
排序的方向desc或者asc
Header Params
Authorization
string 
optional
Default:
Bearer {{token}}

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 GET 'http://192.168.2.91:8080/shipin/task/list?id=&batchId=&tmpId=&deviceId=&name=&status=&tmpParamValue=&feedback=' \
--header 'Authorization: Bearer {{token}}'

Responses

🟢200OK
application/json
Body
表格分页数据对象
total
integer <int64>
optional
总记录数
rows
array[object (SpTaskVo) {14}] 
optional
列表数据
id
integer <int64>
optional
任务id
batchId
integer <int64>
optional
任务批次id
tmpId
integer <int64>
optional
模板id
deviceId
string 
optional
设备id
name
string 
optional
任务名称
status
string 
optional
任务状态
tmpParamValue
string 
optional
模板值,通过json数组存储
effects
string 
optional
效果
feedback
string 
optional
反馈的信息
updateTime
string <date-time>
optional
更新时间
createBy
string 
optional
创建者
createTime
string <date-time>
optional
创建时间
updateBy
string 
optional
更新者
similarity
number <double>
optional
相似度,0为未计算
code
integer <int32>
optional
消息状态码
msg
string 
optional
消息内容
Example
{
    "total": 0,
    "rows": [
        {
            "id": 0,
            "batchId": 0,
            "tmpId": 0,
            "deviceId": "string",
            "name": "string",
            "status": "string",
            "tmpParamValue": "string",
            "effects": "string",
            "feedback": "string",
            "updateTime": "2019-08-24T14:15:22Z",
            "createBy": "string",
            "createTime": "2019-08-24T14:15:22Z",
            "updateBy": "string",
            "similarity": 0
        }
    ],
    "code": 0,
    "msg": "string"
}
Modified at 2023-11-03 09:21:02
Previous
获取任务详细信息
Next
创建任务
Built with