alibaba.wdk.fulfill.coordination.wms.order.batch (盒马优选合单标准服务)

盒马优选合单标准服务

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
is_test String 必须 1 是否测试数据
tc_warehouse_list String [] 必须 123,456
  • 最大列表长度:999
  • 网格仓list,多个网格仓以逗号分隔
    user_expect_time String 必须 2021-01-01 10:00:00~2021-01-01 20:00:00 用户期望时间
    warehouse_code String 必须 1 中心仓code

    响应参数

    名称 类型 示例值 描述
    error_message_code String 1 错误码
    error_success String true 是否执行成功
    error_msg String 1111 错误信息

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    AlibabaWdkFulfillCoordinationWmsOrderBatchRequest req = new AlibabaWdkFulfillCoordinationWmsOrderBatchRequest();
    req.setIsTest("1");
    req.setTcWarehouseList("123,456");
    req.setUserExpectTime("2021-01-01 10:00:00~2021-01-01 20:00:00");
    req.setWarehouseCode("1");
    AlibabaWdkFulfillCoordinationWmsOrderBatchResponse rsp = client.execute(req, sessionKey);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <alibaba_wdk_fulfill_coordination_wms_order_batch_response>
        <error_message_code>1</error_message_code>
        <error_success>true</error_success>
        <error_msg>1111</error_msg>
    </alibaba_wdk_fulfill_coordination_wms_order_batch_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

    返回
    顶部