文档中心 > API类目 > 信息平台-采购

alibaba.infop.ceres.supplier.query (采购系统供应商信息查询)

采购系统供应商信息查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
supplier_code String 必须 SU012812 供应商编码

响应参数

名称 类型 示例值 描述
result_list SupplierInfo 供应商列表
  • └ address
  • String
  • 120
  • 经营地址-详细地址
  • └ bussiness_license_no
  • String
  • 1234567890
  • 统一社会信用代码
  • └ code
  • String
  • SU012812
  • 编码
  • └ company_id
  • String
  • 11
  • 公司ID
  • └ company_reg_place
  • String
  • cn
  • 公司注册地
  • └ employees_count
  • Number
  • 10000
  • 员工数
  • └ enterprise_type
  • String
  • NATIONALIZED
  • 企业类型
  • └ established_time
  • Date
  • 12312312
  • 成立时间
  • └ geography_name
  • String
  • P330000,C330100
  • 经营地址
  • └ id
  • Number
  • 2788
  • id
  • └ name
  • String
  • 蒋彦霞测试用公司-私人专用
  • 名称
  • └ ora_type
  • String
  • normal
  • 供应商对应在Oracle中的类型
  • └ regcapital
  • String
  • 300010000
  • 注册资金
  • └ tax_id
  • String
  • 222
  • 海外供应商税号
  • └ type
  • String
  • normal
  • 类型
  • └ categorys
  • String []
  • 外包采购-技术外包-开发测试外包
  • 合作类目名称列表

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaInfopCeresSupplierQueryRequest req = new AlibabaInfopCeresSupplierQueryRequest();
req.setSupplierCode("SU012812");
AlibabaInfopCeresSupplierQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_infop_ceres_supplier_query_response>
    <result_list>
        <address>120</address>
        <bussiness_license_no>1234567890</bussiness_license_no>
        <code>SU012812</code>
        <company_id>11</company_id>
        <company_reg_place>cn</company_reg_place>
        <employees_count>10000</employees_count>
        <enterprise_type>NATIONALIZED</enterprise_type>
        <established_time>12312312</established_time>
        <geography_name>P330000,C330100</geography_name>
        <id>2788</id>
        <name>蒋彦霞测试用公司-私人专用</name>
        <ora_type>normal</ora_type>
        <regcapital>300010000</regcapital>
        <tax_id>222</tax_id>
        <type>normal</type>
        <categorys>
            <string>外包采购-技术外包-开发测试外包</string>
        </categorys>
    </result_list>
</alibaba_infop_ceres_supplier_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

返回
顶部