taobao.fenxiao.returngoods.sup.confirmgoods (供应商确认收货(针对退货退款/换货))

供应商确认收货(针对退货退款/换货)

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
confirm_goods_reason String 可选 货已收到 确认收货的原因
refund_id Number 必须 11111 要操作的逆向退款ID

响应参数

名称 类型 示例值 描述
biz_failed_code String isv.invalid-parameter:refund_id 执行失败的错误码
biz_failed_msg String 逆向单号不能为空 执行失败的错误原因
biz_success Boolean true 是否执行成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
FenxiaoReturngoodsSupConfirmgoodsRequest req = new FenxiaoReturngoodsSupConfirmgoodsRequest();
req.setConfirmGoodsReason("货已收到");
req.setRefundId(11111L);
FenxiaoReturngoodsSupConfirmgoodsResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<fenxiao_returngoods_sup_confirmgoods_response>
    <biz_failed_code>isv.invalid-parameter:refund_id</biz_failed_code>
    <biz_failed_msg>逆向单号不能为空</biz_failed_msg>
    <biz_success>true</biz_success>
</fenxiao_returngoods_sup_confirmgoods_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部