- 权限
- 公用设置
- 基本信息
- 销售管理
- 采购管理
- 存货管理
- 生产管理
- 测试数据
- 工艺管理
撤审
已测完
开发环境
http://192.168.0.18:30000
开发环境
http://192.168.0.18:30000
POST
/api/rgw/order/Revocation
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
OddNumber
string
单号
Auditor
string
审核人
示例
{
"OddNumber": "string",
"Auditor": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://192.168.0.18:30000/api/rgw/order/Revocation' \
--header 'Content-Type: application/json' \
--data-raw '{
"OddNumber": "string",
"Auditor": "string"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
null
必需
extras
null
必需
timestamp
integer
必需
timeConsuming
integer
必需
示例
{
"code": 200,
"msg": "操作成功",
"data": null,
"extras": null,
"timestamp": 1721271746889,
"timeConsuming": 173
}