通过企业名称查询详细信息
开发中
POST
/basic/enterprise/search
1.查询人是在资金系统里注册的用户
2.查询的企业是需要在资金系统建立的组织
请求参数
Body 参数application/json
name
string
企业名称
示例
{
"username": "admin",
"orgName": "浙江优财云链有限公司",
"tenantId": "000000"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/basic/enterprise/search' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "admin",
"orgName": "浙江优财云链有限公司",
"tenantId": "000000"
}'
返回响应
🟢200成功
application/json
Body
code
string
错误码
msg
string
错误描述
data
object
必需
ent_id
string
企业ID
>= 0 字符<= 100 字符
name
string
企业名称
>= 0 字符<= 100 字符
english_name
string | null
英文名
>= 0 字符<= 100 字符
credit_code
string
统一社会信用代码
>= 0 字符<= 50 字符
institution_code
string
组织机构代码
>= 0 字符<= 100 字符
reg_number
string
企业注册号
>= 0 字符<= 100 字符
ent_type
string
企业类型
>= 0 字符<= 50 字符
ent_nature
string
企业性质
<= 1 字符
legal_person
string
法定代表人
>= 0 字符<= 2000 字符
est_date
string
成立日期
<= 50 字符
cancel_date
string | null
注销日期
revoke_date
string | null
吊销日期
updated_date
string
更新日期
ent_status
string
企业状态
>= 0 字符<= 50 字符
reg_institute
string | null
登记机关
reg_area
object | null
登记机关所在区域
reg_address
string
注册地址
>= 0 字符<= 2000 字符
scope
string
经营范围
>= 0 字符<= 4000 字符
term_start
string | null
营业期限始
>= 0 字符<= 50 字符
term_end
string | null
营业期限至
>= 0 字符<= 50 字符
check_date
string | null
核准日期
>= 0 字符<= 20 字符
regist_capital
string | null
注册资本
>= 0 字符<= 50 字符
regist_capital_currency
string | null
注册资本币种
>= 0 字符<= 50 字符
actual_capital
string | null
实缴资本
>= 0 字符<= 50 字符
actual_capital_currency
string | null
实缴资本币种
>= 0 字符<= 50 字符
staff_insured_number
string | null
参保人数
>= 0 字符<= 10 字符
staff_number_range
string | null
人员规模
>= 0 字符<= 10 字符
is_listed
string
是否上市企业
>= 0 字符<= 1 字符
stock_info
object
上市/股票信息
shareholder
array [object {10}]
股东信息
key_personnel
array [object {3}]
主要人员/高管
invest
array [object {8}]
对外投资信息
contact_info
object
联系信息
industry
object
国民行业分类
original_name
array [object {2}] | null
曾用名
示例
{
"code": "string",
"msg": "string",
"data": {
"ent_id": "xxxxxxxx",
"name": "这是公司名字",
"english_name": "Company., Ltd",
"credit_code": "xxxxxxxxxx",
"institution_code": "xxxxxxxxxxx",
"reg_number": "xxxxxxxxx",
"ent_type": " 0",
"ent_nature": "0",
"legal_person": "这是法人名字",
"est_date": "2014-03-12",
"cancel_date": "2014-03-12",
"revoke_date": "2014-03-12",
"updated_date": "2014-03-12",
"ent_status": "0",
"reg_institute": "0",
"reg_area": {
"province": "浙江省",
"city": "杭州市",
"district": "滨江区"
},
"reg_address": "地址",
"scope": "范围包括……",
"term_start": "2014-03-12",
"term_end": "2014-03-12",
"check_date": "2014-03-12",
"regist_capital": "100000",
"regist_capital_currency": "CNY",
"actual_capital": "100000",
"actual_capital_currency": "CNY",
"staff_insured_number": "100",
"staff_number_range": "100",
"is_listed": "0",
"stock_info": {
"stock_type": "0",
"stock_number": "xxxxxxxxxxxx",
"listing_type": "0"
},
"shareholder": [
{
"name": "string",
"type": "string",
"funded_ratio": "string",
"hold_status": "s",
"ent_status": "string",
"should_capital": "string",
"should_capital_currency": "string",
"shoud_date": "string",
"stake_date": "string",
"country": "string"
}
],
"key_personnel": [
{
"name": "xxx",
"position": "董事长",
"type": "1"
}
],
"invest": [
{
"name": "xxxxxxxxxxxx",
"type": "0",
"ent_id": "xxxxxxxxxx",
"hold_status": "0",
"ent_status": "0",
"should_capital": "3000.00",
"should_capital_currency": "CNY",
"funded_ratio": "10%"
}
],
"contact_info": {
"webSite": [
{
"name": "name",
"url": "www.qcc.com"
}
],
"phone_number": "0512-62519280",
"email": "yocyl@yocyl.com"
},
"industry": {
"industry_code": "M",
"industry": "科学研究和技术服务业",
"sub_industry_code": "73",
"sub_industry": "研究和试验发展",
"middle_category_code": null,
"middle_category": null,
"small_category_code": null,
"small_category": null
},
"original_name": [
{
"name": "xxxxxxxxxxxxxxxxxxxx",
"change_date": "2020-08-26"
}
]
}
}