- 商城侧 - 后台
- 用户
- 商品
- 设置
- 营销
- 订单
- 分销
- 回调
- 供应商
- 门店
- 系统
- 财务
- 商城侧 - 门店
- 商城侧 - 收银台
- 商城侧 - 供应商
- 商城侧 - 客服
订单售后退款
开发中
PUT
/adminapi/refund/refund
请求参数
Authorization
在 header 添加参数
Authori-Zation
示例:
Authori-Zation: ********************
Body 参数application/json
order_id
string
订单ID
refund_price
integer
订单金额
示例
{
"order_id": "string",
"refund_price": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT '/adminapi/refund/refund' \
--header 'Content-Type: application/json' \
--header 'Authori-Zation;' \
--data-raw '{
"order_id": "string",
"refund_price": 0
}'
返回响应
🟢200成功
application/json
Body
status
integer
必需
msg
string
必需
示例
{
"status": 200,
"msg": "退款成功"
}