注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 天猫汽车

tmall.aliauto.abnormal.seller.get (天猫汽车安装服务-查询异常商家)

天猫汽车安装服务-查询异常商家

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param QuerySettleAbnormalSellerReq 可选 请求参数
  • └ biz_code
  • String
  • 可选
  • car
  • 业务身份
  • └ request_source
  • String
  • 可选
  • xkz
  • 请求来源

响应参数

名称 类型 示例值 描述
data QuerySettleAbnormalSellerResp 出参
  • └ biz_code
  • String
  • car
  • 业务身份
  • └ all_abnormal_seller_nick
  • String []
  • ["hah", "xiaoming]
  • 异常商家nick列表
result_success Boolean true 返回状态
msg_info String 信息 返回信息
msg_code String 200 返回code

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallAliautoAbnormalSellerGetRequest req = new TmallAliautoAbnormalSellerGetRequest();
TmallAliautoAbnormalSellerGetRequest.QuerySettleAbnormalSellerReq obj1 = new TmallAliautoAbnormalSellerGetRequest.QuerySettleAbnormalSellerReq();
obj1.setBizCode("car");
obj1.setRequestSource("xkz");
req.setParam(obj1);
TmallAliautoAbnormalSellerGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_aliauto_abnormal_seller_get_response>
    <data>
        <biz_code>car</biz_code>
        <all_abnormal_seller_nick>
            <string>[&quot;hah&quot;</string>
            <string>&quot;xiaoming]</string>
        </all_abnormal_seller_nick>
    </data>
    <result_success>true</result_success>
    <msg_info>信息</msg_info>
    <msg_code>200</msg_code>
</tmall_aliauto_abnormal_seller_get_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

返回
顶部