API
查询退货派送方式
更新时间: 2024-11-08 15:49:17 访问次数:2625

接口说明

查询可进行退货的return label的派送渠道

接口名称

rma.returnGoodsOrder.queryPSCList

请求说明

请求内容 说明
URL https://openapi.winit.com.cn/openapi/service
接口测试 https://sandboxopenapi.winit.com.cn/openapi/service
验证方法 Token,md5
格式 json
字符编码 UTF-8
http请求方式 http
请求数限制 默认每分钟1000,1000有需要可申请加大。

请求入参

请求示例

  1. {
  2. "action": "rma.returnGoodsOrder.queryPSCList",
  3. "app_key": "rebecca",
  4. "client_id": "ODJKMDU1YZCTYJQ5YY00ZWZLLTK5N2QTOWY4MZI5OGMWNDG2",
  5. "data": {},
  6. "format": "json",
  7. "language": "zh_CN",
  8. "platform": "OWNERERP",
  9. "sign": "7EC5FF4C8944E7DB2AF0E62C82A5FF1C",
  10. "sign_method": "md5",
  11. "timestamp": "2015-06-16 001926",
  12. "version": "1.0",
  13. "client_sign": "B4C8DFD61227EAF4296BC788CA2336C5"
  14. }

返回出参

返回参数说明:正确的返回编码code:0及结果data,错误的返回错误码及错误信息msg。

名称 类型 必传 说明 示例
list Array Y 渠道列表
productName String() Y 渠道名称
productCode String() Y 渠道编码
sla String() N 渠道SLA
deliveryService String() Y 是否支持return label(以及派送)

返回示例

  1. {
  2. "code": "0",
  3. "msg": "操作成功",
  4. "data": {
  5. "list": [
  6. {
  7. "productName": "退货商品上架",
  8. "productCode": "OSF511001",
  9. "sla": null,
  10. "deliveryService": "N"
  11. },
  12. {
  13. "productName": "DHL - Domestic Paket (Standard 1-3 Business Days)-Return",
  14. "productCode": "OSF521006349",
  15. "sla": null,
  16. "deliveryService": "Y"
  17. },
  18. {
  19. "productName": "DHL - International Paket (Standard 2-8 Business Days)-Return(内部测试PSC)",
  20. "productCode": "OSF521006352",
  21. "sla": null,
  22. "deliveryService": "Y"
  23. }
  24. ]
  25. }
  26. }
关键词