文档中心 > API类目 > ICBU-交易

alibaba.seller.order.shipping.batch.modify (修改物流批次相关信息)

修改物流批次相关信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_one_batch_modify_request OneBatchModifyRequest 必须 {}
  • └ batch_id
  • Number
  • 必须
  • 1232
  • 批次id,从alibaba.seller.order.shippingorder.query 取id字段
  • goods
  • Goods []
  • 可选
  • 货品信息,可选
  • └ product_id
  • String
  • 必须
  • 1223
  • 商品id
  • └ quantity
  • String
  • 必须
  • 11
  • 要发货的商品数量
  • shipping_request
  • ShippingRequest
  • 必须
  • 凭证请求
  • attachments
  • Attachment []
  • 必须
  • 附件list
  • └ file_name
  • String
  • 必须
  • test.jpg
  • 文件名
  • └ file_path
  • String
  • 必须
  • xxxxxxxxxxx
  • 文件path
  • └ logistics_type
  • String
  • 必须
  • EXPRESS
  • 物流类型
  • └ service_provider
  • String
  • 必须
  • DHL
  • 承运商code
  • └ tracking_number
  • String
  • 必须
  • 123432
  • 物流单号
  • └ trade_id
  • String
  • 必须
  • 111
  • 订单号
  • └ trade_id
  • String
  • 必须
  • 111
  • 订单号

响应参数

名称 类型 示例值 描述
value Boolean true 无需关注

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSellerOrderShippingBatchModifyRequest req = new AlibabaSellerOrderShippingBatchModifyRequest();
AlibabaSellerOrderShippingBatchModifyRequest.OneBatchModifyRequest obj1 = new AlibabaSellerOrderShippingBatchModifyRequest.OneBatchModifyRequest();
obj1.setBatchId(1232L);
List<AlibabaSellerOrderShippingBatchModifyRequest.Goods> list3 = new ArrayList<AlibabaSellerOrderShippingBatchModifyRequest.Goods>();
AlibabaSellerOrderShippingBatchModifyRequest.Goods obj4 = new AlibabaSellerOrderShippingBatchModifyRequest.Goods();
list3.add(obj4);
obj4.setProductId("1223");
obj4.setQuantity("11");
obj1.setGoods(list3);
AlibabaSellerOrderShippingBatchModifyRequest.ShippingRequest obj5 = new AlibabaSellerOrderShippingBatchModifyRequest.ShippingRequest();
List<AlibabaSellerOrderShippingBatchModifyRequest.Attachment> list7 = new ArrayList<AlibabaSellerOrderShippingBatchModifyRequest.Attachment>();
AlibabaSellerOrderShippingBatchModifyRequest.Attachment obj8 = new AlibabaSellerOrderShippingBatchModifyRequest.Attachment();
list7.add(obj8);
obj8.setFileName("test.jpg");
obj8.setFilePath("xxxxxxxxxxx");
obj5.setAttachments(list7);
obj5.setLogisticsType("EXPRESS");
obj5.setServiceProvider("DHL");
obj5.setTrackingNumber("123432");
obj5.setTradeId("111");
obj1.setShippingRequest(obj5);
obj1.setTradeId("111");
req.setParamOneBatchModifyRequest(obj1);
AlibabaSellerOrderShippingBatchModifyResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_seller_order_shipping_batch_modify_response>
    <value>true</value>
</alibaba_seller_order_shipping_batch_modify_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

返回
顶部