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/{id}
获取任务详细信息

Request

Path Params
id
integer 
required
主键
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/' \
--header 'Authorization: Bearer {{token}}'

Responses

🟢200OK
application/json
Body
响应信息主体
code
integer <int32>
optional
msg
string 
optional
data
object (SpTaskInfoVo) 
optional
id
integer <int64>
optional
任务id
batchId
integer <int64>
optional
任务批次id
template
object (SpTemplateVo) 
optional
模板视图对象 sp_template
tmpParamValue
object 
optional
模板值,通过json数组存储
processGroups
array [object] 
optional
任务工序组表,主要提取分配给当前任务的参数数据
deviceId
string 
optional
设备id
name
string 
optional
任务名称
status
integer <int64>
optional
任务状态
feedback
string 
optional
effects
string 
optional
效果
Example
{
    "code": 0,
    "msg": "string",
    "data": {
        "id": 0,
        "batchId": 0,
        "template": {
            "id": 0,
            "tmpName": "string",
            "tmpPreviewUrl": "string",
            "tmpCoverUrl": "string",
            "tmpTag": "string",
            "tmpDesc": "string",
            "videoWidth": 0,
            "videoHeight": 0,
            "frameRate": 0,
            "hasSubtitle": 0,
            "hasMaterial": 0,
            "createBy": "string",
            "createTime": "2019-08-24T14:15:22Z",
            "updateBy": "string",
            "updateTime": "2019-08-24T14:15:22Z",
            "templateParams": [
                {
                    "id": 0,
                    "tmpId": 0,
                    "paramClass": "string",
                    "paramName": "string",
                    "paramType": 0,
                    "paramCode": "string",
                    "defaultValue": "string",
                    "paramValue": "string",
                    "isRequired": 0,
                    "sort": 0
                }
            ],
            "processGroups": [
                {
                    "processGroupId": 0,
                    "groupName": "string",
                    "groupDesc": "string",
                    "typeName": "string",
                    "typeDesc": "string",
                    "groupSort": 0,
                    "processList": [
                        {
                            "processGroupProcessId": 0,
                            "processId": 0,
                            "name": "string",
                            "typeName": "string",
                            "typeAction": "string",
                            "typeDesc": "string",
                            "parent": 0,
                            "layer": 0,
                            "startMark": 0,
                            "endMark": 0,
                            "code": "string",
                            "processSort": 0,
                            "processParamDtoList": [
                                {
                                    "paramId": 0,
                                    "paramClass": "string",
                                    "paramName": "string",
                                    "paramType": 0,
                                    "paramKey": "string",
                                    "paramValueType": 0,
                                    "defaultValue": "string",
                                    "paramValue": "string",
                                    "paramSort": 0,
                                    "empty": true
                                }
                            ]
                        }
                    ]
                }
            ],
            "properStyle": "string",
            "properDuration": "string",
            "properPlatform": "string"
        },
        "tmpParamValue": {
            "raw": {
                "property1": {},
                "property2": {}
            },
            "config": {
                "keyComparator": {},
                "ignoreError": true,
                "ignoreCase": true,
                "dateFormat": "string",
                "ignoreNullValue": true,
                "transientSupport": true,
                "stripTrailingZeros": true,
                "checkDuplicate": true,
                "order": true
            },
            "empty": true,
            "property1": {},
            "property2": {}
        },
        "processGroups": [
            {}
        ],
        "deviceId": "string",
        "name": "string",
        "status": 0,
        "feedback": "string",
        "effects": "string"
    }
}
Modified at 2023-11-03 09:21:02
Previous
任务状态回退
Next
查询任务列表
Built with