Skip to content
EN

绘图变化-simple(UPSCALE; VARIATION; REROLL)

方法: POST

即将废弃,请使用 执行动作 接口;功能更多,对接更简单

请求参数

Header 参数

text
Authorization
string
可选
默认值:
Bearer {{YOUR_API_KEY}}

Body 参数 application/json

text
content
string
必需
变化描述: ID
a
c
t
i
o
n
index
示例:
1320098173412546 U2
notifyHook
string
可选
回调地址, 为空时使用全局notifyHook
state
string
自定义参数
可选
示例
{
"content"
:
"1320098173412546 U2"
,
"notifyHook"
:
"string"
,
"state"
:
"string"
}

请求示例代码

Shell

bash
curl --location -g --request POST '{{BASE_URL}}/mj/submit/simple-change' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "content": "1320098173412546 U2",
    "notifyHook": "string",
    "state": "string"
}'

返回响应

🟢 200 OK

内容类型: application/json

响应结构

text
code
integer
<int32>
必需
状态码: 1(提交成功), 21(已存在), 22(排队中), other(错误)
示例:
1
description
string
描述
必需
示例:
提交成功
properties
object
扩展字段
可选
result
string
任务ID
可选
示例:
1320098173412546

示例

json
{
    "code": 1,
    "description": "提交成功",
    "properties": {},
    "result": 1320098173412546
}

🟢 201 Created

🟠 401 Unauthorized

🟠 403 Forbidden

🟠 404 Not Found