文档中心 > API类目 > 服务平台API

taobao.recycle.old.waybillno.report (以旧换新同步回收单运单号)

以旧换新同步回收单运单号

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
old_order_id Number 必须 123123123 回收单号
old_waybill_no String 必须 SF123 运单号
report_type String 必须 SYNC_WAYBILL 上报类型,SYNC_WAYBILL 同步运单号,WITHOUT_WAYBILL 运单结果同步
without_waybill_reason String 可选 无运单原因 无运单原因

响应参数

名称 类型 示例值 描述
report_success Boolean true 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
RecycleOldWaybillnoReportRequest req = new RecycleOldWaybillnoReportRequest();
req.setOldOrderId(123123123L);
req.setOldWaybillNo("SF123");
req.setReportType("SYNC_WAYBILL");
req.setWithoutWaybillReason("无运单原因");
RecycleOldWaybillnoReportResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<recycle_old_waybillno_report_response>
    <report_success>true</report_success>
</recycle_old_waybillno_report_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

返回
顶部