简要描述:
售后列表
请求URL:
http(s)://平台域名/api/admin/v1/orde/complainList
请求方式:
POST
请求参数:
Header 参数 | 类型 | 是否必填 | 描述 | 示例值 |
---|---|---|---|---|
UserId | string | 是 | 您的后台管理员登录账号 | admin |
Sign | string | 是 | 签名(后台-设置-后台用户-管理员列表-编辑获取apikey) | 点击查看签名规范 |
Timestamp | string | 是 | 13位时间戳(毫秒) | 1696644296195 |
Body 参数 | 类型 | 是否必填 | 描述 | 示例值 |
---|---|---|---|---|
uid | int | 否 | 用户UID | |
goods_id | string | 否 | 商品ID | |
goods_name | string | 否 | 商品名称 | |
ordersn | string | 否 | 订单号 | |
status | string | 否 | 售后状态(1=等待处理,2=正在处理,3=处理完成,4=终止售后 | |
page | string | 否 | 页数 | |
limit | string | 否 | 条数 | - |
请求示例:
{ "ordersn": "D0522274202244629397504", "goods_name": "", "goods_id": "", "uid": "", "status": 1, "page": 1, "limit": 10 }
签名示例:
1699528282856{"goods_id":"","goods_name":"","limit":10,"ordersn":"D0522274202244629397504","page":1,"status":2,"uid":""}k4Y8hywXDpU67foPbdDANuqSeTS9qqMPnZ2djOHJtDcotM
返回示例:
{ "code": 200, "msg": "确定", "data": { "list": [ { "id": 58, "uid": 3, "host": "new2.ezhancn.com", "goods_name": "测试卡密", "goods_id": 1, "subject": "订单有误退款", "ordersn": "D0522274202244629397504", "status": 1, "new_content": { "type": 0, "time": 1748414246, "screenshot": "/uploads/user/3/20250528/93389c0aed411629021abf6d5d462452.jpg", "content": "" } } ], "total": 1 } }
返回data说明:
参数名 | 类型 | 描述 |
---|---|---|
id | int | 投诉ID |
uid | string | 用户ID |
host | string | 下单域名 |
ordersn | string | 平台本地订单号 |
subject | string | 售后主题 |
goods_name | string | 商品标题 |
goods_id | int | 商品ID |
status | int | 售后状态(1=等待处理,2=正在处理,3=处理完成,4=终止售后) |
返回new_content说明:
参数名 | 类型 | 描述 |
---|---|---|
type | string | 类型(0用户 1客服) |
time | string | 时间戳 |
screenshot | string | 图片 |
content | string | 内容 |