文档中心 > API类目 > 资质共享API

taobao.fivee.innerproduct.get (国产商品资质查询)

资质共享平台,国产商品查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_bucode String 必须 AUCHAN bu身份标识
param_barcode String 必须 691234 条形码

响应参数

名称 类型 示例值 描述
result Result 接口返回model
  • └ code
  • Number
  • code
  • data
  • InnerProduct
  • 1234
  • 返回素材id
  • └ auth_code
  • String
  • 批次或备案证书编号
  • └ barcode
  • String
  • 条形码
  • licences
  • Licence []
  • 证照信息
  • └ certification_body
  • String
  • 认证机构
  • └ code
  • String
  • 编码
  • └ due_date
  • Date
  • 到期日期
  • └ effective_date
  • Date
  • 生效日期
  • └ name
  • String
  • 证照名称
  • └ type
  • Number
  • 类型
  • └ urls
  • String []
  • 下载地址列表
  • └ name
  • String
  • 商品名称
  • produce_companies
  • Company []
  • 生产商
  • └ established_date
  • String
  • 成立时间
  • licences
  • Licence []
  • 证照信息
  • └ certification_body
  • String
  • 认证机构
  • └ code
  • String
  • 编码
  • └ due_date
  • Date
  • 到期日期
  • └ effective_date
  • Date
  • 生效日期
  • └ name
  • String
  • 证照名称
  • └ type
  • Number
  • 类型
  • └ urls
  • String []
  • 下载地址列表
  • └ name
  • String
  • 生产商名称
  • └ registered_capital
  • String
  • 注册资本
  • └ unique_code
  • String
  • 统一社会信用代码
  • provider_companies
  • Company []
  • 供应商信息
  • └ established_date
  • String
  • 成立时间
  • licences
  • Licence []
  • 证照信息
  • └ certification_body
  • String
  • 认证机构
  • └ code
  • String
  • 编码
  • └ due_date
  • Date
  • 到期日期
  • └ effective_date
  • Date
  • 生效日期
  • └ name
  • String
  • 名称
  • └ type
  • Number
  • 类型
  • └ urls
  • String []
  • 下载地址列表
  • └ name
  • String
  • 名称
  • └ registered_capital
  • String
  • 注册资本
  • └ unique_code
  • String
  • 统一社会信用代码
  • └ message
  • String
  • message
  • └ success
  • Boolean
  • false
  • 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
FiveeInnerproductGetRequest req = new FiveeInnerproductGetRequest();
req.setParamBucode("AUCHAN");
req.setParamBarcode("691234");
FiveeInnerproductGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<fivee_innerproduct_get_response>
    <result>
        <code></code>
        <data>
            <auth_code></auth_code>
            <barcode></barcode>
            <licences>
                <licence>
                    <certification_body></certification_body>
                    <code></code>
                    <due_date></due_date>
                    <effective_date></effective_date>
                    <name></name>
                    <type></type>
                    <urls>
                        <string></string>
                    </urls>
                </licence>
            </licences>
            <name></name>
            <produce_companies>
                <company>
                    <established_date></established_date>
                    <licences>
                        <licence>
                            <certification_body></certification_body>
                            <code></code>
                            <due_date></due_date>
                            <effective_date></effective_date>
                            <name></name>
                            <type></type>
                            <urls>
                                <string></string>
                            </urls>
                        </licence>
                    </licences>
                    <name></name>
                    <registered_capital></registered_capital>
                    <unique_code></unique_code>
                </company>
            </produce_companies>
            <provider_companies>
                <company>
                    <established_date></established_date>
                    <licences>
                        <licence>
                            <certification_body></certification_body>
                            <code></code>
                            <due_date></due_date>
                            <effective_date></effective_date>
                            <name></name>
                            <type></type>
                            <urls>
                                <string></string>
                            </urls>
                        </licence>
                    </licences>
                    <name></name>
                    <registered_capital></registered_capital>
                    <unique_code></unique_code>
                </company>
            </provider_companies>
        </data>
        <message></message>
        <success>false</success>
    </result>
</fivee_innerproduct_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

返回
顶部