绘图变化
POST
https://api.duckagi.com/mj/submit/change请求参数:
参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
action | UPSCALE(放大); VARIATION(变换); REROLL(重新生成),可用值,VARIATION,REROLL | | true | string | |
index | 序号(1~4), action为UPSCALE,VARIATION时必传 | | false | integer(int32) | |
notifyHook | 回调地址, 为空时使用全局notifyHook | | false | string | |
state | 自定义参数 | | false | string | |
taskId | 任务ID | | true | string | |
响应参数:
参数名称 | 参数说明 | 类型 | schema |
code | 状态码: 1(提交成功), 21(已存在), 22(排队中), other(错误) | integer(int32) | integer(int32) |
description | 描述 | string | |
properties | 扩展字段 | object | |
result | 任务ID | string | |
请求参数
Header 参数
Authorization
string
必需
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
action
string
必需
index
integer
可选
notifyHook
string
可选
state
string
可选
taskId
string
必需
示例
{
"action": "UPSCALE",
"index": 1,
"notifyHook": "",
"state": "",
"taskId": "1320098173412546"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
可选
description
string
可选
properties
object
可选
result
integer
可选
示例
{
"code": 1,
"description": "提交成功",
"properties": {},
"result": 1320098173412546
}
最后修改时间: 1 年前