文档中心 > API类目 > 天猫服务平台

alibaba.ssc.supplyplatform.servicestore.offline (网点下线)

网点下线功能

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
service_store_code_list String [] 可选 WYG34005
  • 最大列表长度:20
  • 网点编码列表集合,最大支持1000
    service_store_id_list Number [] 可选 123
  • 最大列表长度:20
  • 网点id列表集合,最大支持1000

    响应参数

    名称 类型 示例值 描述
    result Result demo 接口返回model
    • └ display_msg
    • String
    • 缺少参数
    • 错误信息
    • └ success
    • Boolean
    • true
    • 成功或失败
    • └ error_code
    • String
    • MISSING_PARAM
    • 错误code
    • └ error_msg
    • String
    • 缺少参数
    • 错误信息

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    AlibabaSscSupplyplatformServicestoreOfflineRequest req = new AlibabaSscSupplyplatformServicestoreOfflineRequest();
    req.setServiceStoreCodeList("WYG34005");
    req.setServiceStoreIdList("123");
    AlibabaSscSupplyplatformServicestoreOfflineResponse rsp = client.execute(req, sessionKey);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <alibaba_ssc_supplyplatform_servicestore_offline_response>
        <result>
            <display_msg>缺少参数</display_msg>
            <success>true</success>
            <error_code>MISSING_PARAM</error_code>
            <error_msg>缺少参数</error_msg>
        </result>
    </alibaba_ssc_supplyplatform_servicestore_offline_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

    返回
    顶部