文档中心 > API类目 > 五道口API

taobao.wdktms.waybill.waybilloperatornotify (配送员运单操作回传)

外部CP配送员对运单操作变更回写到wdktms

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
waybill_code String 必须 DT84003 任务编码
status Number 必须 60 状态
status_detail String 必须 6001 二级状态
lng_lat String 必须 121.112233, 30.112233 经纬度

响应参数

名称 类型 示例值 描述
result String {"retCode":"0000","retMsg":"成功"} result

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
WdktmsWaybillWaybilloperatornotifyRequest req = new WdktmsWaybillWaybilloperatornotifyRequest();
req.setWaybillCode("DT84003");
req.setStatus(60L);
req.setStatusDetail("6001");
req.setLngLat("121.112233, 30.112233");
WdktmsWaybillWaybilloperatornotifyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<wdktms_waybill_waybilloperatornotify_response>
    <result>{&quot;retCode&quot;:&quot;0000&quot;,&quot;retMsg&quot;:&quot;成功&quot;}</result>
</wdktms_waybill_waybilloperatornotify_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

返回
顶部