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

alibaba.ssc.supplyplatform.brand.certification.query (服务品牌认证查询)

服务品牌认证查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
brand_certification_dynamic_query_request BrandCertificationDynamicQueryRequest 必须 品牌认证查询参数
  • └ brand_name
  • String
  • 可选
  • 赛维克
  • 品牌名

响应参数

名称 类型 示例值 描述
display_msg String xxx 展示信息
is_success Boolean true 是否成功
value BrandCertificationDTO [] 品牌信息
  • └ brand_name
  • String
  • 赛维克
  • 品牌名称
  • └ brand_id
  • Number
  • xxx
  • 品牌id
error_msg String xxx 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSscSupplyplatformBrandCertificationQueryRequest req = new AlibabaSscSupplyplatformBrandCertificationQueryRequest();
AlibabaSscSupplyplatformBrandCertificationQueryRequest.BrandCertificationDynamicQueryRequest obj1 = new AlibabaSscSupplyplatformBrandCertificationQueryRequest.BrandCertificationDynamicQueryRequest();
obj1.setBrandName("赛维克");
req.setBrandCertificationDynamicQueryRequest(obj1);
AlibabaSscSupplyplatformBrandCertificationQueryResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_ssc_supplyplatform_brand_certification_query_response>
    <display_msg>xxx</display_msg>
    <is_success>true</is_success>
    <value>
        <brand_certification_d_t_o>
            <brand_name>赛维克</brand_name>
            <brand_id>xxx</brand_id>
        </brand_certification_d_t_o>
    </value>
    <error_msg>xxx</error_msg>
</alibaba_ssc_supplyplatform_brand_certification_query_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

返回
顶部