- 默认分组
- 产品
- 入库计划单
- 库存
- 订单
- 退货
- 调拨
- 预约
- 基础数据
- 三方授权
- 运费
- 费用
退货条目处理
POST
https://hwc-open-api.yqn.com/v3/saleReturn/addProcessMode
saleReturn
请求参数
Body 参数application/json
saleReturnPlanNo
string
退货计划单号
id
integer
必需
goodsReturnType
integer
必需
newSku
string
必需
remark
string
备注
示例
{
"saleReturnPlanNo": "string",
"id": 0,
"goodsReturnType": 0,
"newSku": "string",
"remark": "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 'https://hwc-open-api.yqn.com/v3/saleReturn/addProcessMode' \
--header 'Content-Type: application/json' \
--data-raw '{
"saleReturnPlanNo": "string",
"id": 0,
"goodsReturnType": 0,
"newSku": "string",
"remark": "string"
}'
返回响应
🟢200成功
application/json
Body
statusCode
integer
必需
status
integer
必需
code
integer
必需
message
string
必需
示例
{
"statusCode": 200,
"status": 0,
"code": 200,
"message": "Operate Successful"
}