文档中心 > API类目 > 平台治理API

taobao.sungari.jgb.shop.status.check (监管宝服务店铺状态查询)

监管宝服务,在工商工作人员立案前查询店铺是否被删除,如果被删除,则提醒不要立案

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_case_check_shop_status_d_o CaseCheckShopStatusDo 必须 入参DO
  • └ source
  • String
  • 必须
  • test
  • 调用来源
  • └ seller_nick
  • String
  • 可选
  • jgbseller
  • 商家昵称

响应参数

名称 类型 示例值 描述
result Result result 接口返回model
  • └ data_code
  • Number
  • true
  • 是否删除状态
  • └ data
  • Boolean
  • 1234
  • 返回素材id
  • └ data_message
  • String
  • OK
  • 返回结果提示

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
SungariJgbShopStatusCheckRequest req = new SungariJgbShopStatusCheckRequest();
SungariJgbShopStatusCheckRequest.CaseCheckShopStatusDo obj1 = new SungariJgbShopStatusCheckRequest.CaseCheckShopStatusDo();
obj1.setSource("test");
obj1.setSellerNick("jgbseller");
req.setParamCaseCheckShopStatusDO(obj1);
SungariJgbShopStatusCheckResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<sungari_jgb_shop_status_check_response>
    <result>
        <data_code>true</data_code>
        <data>1234</data>
        <data_message>OK</data_message>
    </result>
</sungari_jgb_shop_status_check_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

返回
顶部