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

taobao.wdk.tms.waybill.waybillskuoperatornotify (配送员子订单操作回传)

外部cp配送员对子订单操作回传wdktms

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
status Number 可选 70 状态
status_detail String 可选 7001 二级状态
lng_lat String 可选 121.112233, 30.112233 配送员经纬度
waybill_code String 必须 DT84002 任务编码
waybill_sku_id String 可选 353,352,351 任务货物id集合,以逗号分隔
order_sku_ids String 可选 353,352,351 货物集合id,以逗号分隔

响应参数

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

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
WdkTmsWaybillWaybillskuoperatornotifyRequest req = new WdkTmsWaybillWaybillskuoperatornotifyRequest();
req.setStatus(70L);
req.setStatusDetail("7001");
req.setLngLat("121.112233, 30.112233");
req.setWaybillCode("DT84002");
req.setWaybillSkuId("353,352,351");
req.setOrderSkuIds("353,352,351");
WdkTmsWaybillWaybillskuoperatornotifyResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

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

返回
顶部