taobao.paimai.item.store.unbind (商品门店/门店解绑接口)

二手车线下收单业务,商品门店/门店库解绑

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
item_id_list Number [] 可选 123,234
  • 最大列表长度:20
  • 商品id类别,以,隔开
    store_id Number 可选 123123
  • 默认值:0
  • 门店id
    store_group_id Number 可选 123
  • 默认值:0
  • 门店组id

    响应参数

    名称 类型 示例值 描述
    result Result 123 接口返回model
    error_msg String "参数错误" 错误信息
    is_success Boolean false 是否成功

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    PaimaiItemStoreUnbindRequest req = new PaimaiItemStoreUnbindRequest();
    req.setItemIdList("123,234");
    req.setStoreId(123123L);
    req.setStoreGroupId(123L);
    PaimaiItemStoreUnbindResponse rsp = client.execute(req, sessionKey);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <paimai_item_store_unbind_response>
        <result>
        </result>
        <error_msg>&quot;参数错误&quot;</error_msg>
        <is_success>false</is_success>
    </paimai_item_store_unbind_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

    返回
    顶部