获取组织信息
2026/3/8大约 3 分钟
获取组织信息
获取指定组织的详细信息。此接口需要用户已登录,并提供要查询的组织名称。
接口地址:POST /organization/info/get_organization_info
请求头
| 参数名 | 必填 | 说明 |
|---|---|---|
| Content-Type | 是 | 固定值:application/json |
| Authorization | 是 | Bearer token,格式:Bearer <token> |
请求参数(Body)
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| organization_name | string | 是 | 要查询的组织名称,不能为空 |
响应参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| status | int | 是 | HTTP 状态码 |
| code | string | 是 | 本次请求的结果代码 |
| result | string | 是 | 本次请求的结果说明 |
| data | dict | 是 | 组织信息数据 |
data 参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| organization_AegisSpeed_id | int | 是 | 组织 AegisSpeed 识别码 |
| organization_name | string | 是 | 组织名称 |
| organization_registered_time | string | 是 | 组织注册日期,ISO 8601 格式(例如:2024-01-01T00:00:00) |
| organization_founder_AegisSpeed_id | int | 是 | 组织创始人 AegisSpeed 识别码 |
| organization_founder_id | string | 是 | 组织创始人身份证号(可能已脱敏) |
| organization_founder_name | string | 是 | 组织创始人姓名(可能已脱敏) |
| organization_entity_name | string | 是 | 组织主体名称 |
| organization_entity_id | string | 是 | 组织主体统一社会信用代码 |
| organization_entity_tax_id | string | 是 | 组织主体税号 |
| organization_entity_representative | string | 是 | 组织主体法定代表人 |
| organization_entity_registered_capital | string | 是 | 组织主体注册资本 |
| organization_entity_registered_time | string | 是 | 组织主体注册日期,格式 YYYY-MM-DD |
| organization_entity_registered_address | string | 是 | 组织主体注册地址 |
| organization_entity_registered_government | string | 是 | 组织主体登记机关 |
| organization_entity_industry | string | 是 | 组织主体所属行业 |
| organization_entity_industry_category | string | 是 | 组织主体所属行业类别 |
| organization_entity_business_scope | string | 是 | 组织主体经营范围 |
成功响应示例
{
"status": 200,
"code": "10000",
"result": "组织信息获取成功",
"data": {
"organization_AegisSpeed_id": 1,
"organization_name": "示例组织",
"organization_registered_time": "2024-01-01T00:00:00",
"organization_founder_AegisSpeed_id": 10001,
"organization_founder_id": "110***********1234",
"organization_founder_name": "示例创始人",
"organization_entity_name": "示例组织有限公司",
"organization_entity_id": "9134***********01X",
"organization_entity_tax_id": "9134***********01X",
"organization_entity_representative": "示例法人",
"organization_entity_registered_capital": "1000 万人民币",
"organization_entity_registered_time": "2020-01-01",
"organization_entity_registered_address": "某省某市某区某路 123 号",
"organization_entity_registered_government": "某市市场监督管理局",
"organization_entity_industry": "软件和信息技术服务业",
"organization_entity_industry_category": "信息技术",
"organization_entity_business_scope": "软件开发;技术服务;技术咨询;信息系统集成服务;数据处理和存储支持服务等。"
}
}错误响应示例
接口未开放
{
"status": 403,
"code": "10002",
"result": "服务器未开放此接口",
"data": {}
}token 已过期或无效
{
"status": 401,
"code": "10001",
"result": "token 已过期或无效",
"data": {}
}组织名称为空
{
"status": 400,
"code": "10004",
"result": "组织名称为空",
"data": {}
}组织不存在
{
"status": 404,
"code": "10005",
"result": "组织不存在",
"data": {}
}获取组织信息失败,服务器内部错误
{
"status": 500,
"code": "10003",
"result": "获取组织信息失败,服务器内部错误",
"data": {}
}错误代码说明
| 代码 | 说明 |
|---|---|
| 10000 | 组织信息获取成功 |
| 10001 | token 已过期或无效 |
| 10002 | 服务器未开放此接口 |
| 10003 | 获取组织信息失败,服务器内部错误 |
| 10004 | 组织名称为空 |
| 10005 | 组织不存在 |
提示
建议在需要展示组织信息的页面调用此接口,确保用户已登录,并传入有效的 organization_name 参数。