Get Organization Information
3/8/26About 2 min
Get Organization Information
Get detailed information of a specified organization. This endpoint requires the requester to be logged in and provide the target organization name.
Endpoint: POST /organization/info/get_organization_info
Request Headers
| Parameter | Required | Description |
|---|---|---|
| Content-Type | Yes | Fixed value: application/json |
| Authorization | Yes | Bearer token, format: Bearer <token> |
Request Parameters (Body)
| Parameter | Type | Required | Description |
|---|---|---|---|
| organization_name | string | Yes | The name of the organization to query. Cannot be empty. |
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | int | Yes | HTTP status code |
| code | string | Yes | Result code of this request |
| result | string | Yes | Result message |
| data | dict | Yes | Organization information data |
data Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| organization_AegisSpeed_id | int | Yes | Organization AegisSpeed identifier |
| organization_name | string | Yes | Organization name |
| organization_registered_time | string | Yes | Organization registration time, ISO 8601 format (e.g. 2024-01-01T00:00:00) |
| organization_founder_AegisSpeed_id | int | Yes | AegisSpeed identifier of the organization founder |
| organization_founder_id | string | Yes | ID card number of the organization founder (may be desensitized) |
| organization_founder_name | string | Yes | Name of the organization founder (may be desensitized) |
| organization_entity_name | string | Yes | Legal entity name of the organization |
| organization_entity_id | string | Yes | Unified social credit code of the legal entity |
| organization_entity_tax_id | string | Yes | Tax ID of the legal entity |
| organization_entity_representative | string | Yes | Legal representative of the legal entity |
| organization_entity_registered_capital | string | Yes | Registered capital of the legal entity |
| organization_entity_registered_time | string | Yes | Registration date of the legal entity, format YYYY-MM-DD |
| organization_entity_registered_address | string | Yes | Registered address of the legal entity |
| organization_entity_registered_government | string | Yes | Registration authority of the legal entity |
| organization_entity_industry | string | Yes | Industry of the legal entity |
| organization_entity_industry_category | string | Yes | Industry category of the legal entity |
| organization_entity_business_scope | string | Yes | Business scope of the legal entity |
Success Response Example
{
"status": 200,
"code": "10000",
"result": "Organization information retrieved successfully",
"data": {
"organization_AegisSpeed_id": 1,
"organization_name": "Example Organization",
"organization_registered_time": "2024-01-01T00:00:00",
"organization_founder_AegisSpeed_id": 10001,
"organization_founder_id": "110***********1234",
"organization_founder_name": "Example Founder",
"organization_entity_name": "Example Organization Co., Ltd.",
"organization_entity_id": "9134***********01X",
"organization_entity_tax_id": "9134***********01X",
"organization_entity_representative": "Example Representative",
"organization_entity_registered_capital": "10,000,000 CNY",
"organization_entity_registered_time": "2020-01-01",
"organization_entity_registered_address": "Some Province, Some City, Some District, Some Street 123",
"organization_entity_registered_government": "Some City Market Supervision Administration",
"organization_entity_industry": "Software and Information Technology Services",
"organization_entity_industry_category": "Information Technology",
"organization_entity_business_scope": "Software development; technical services; technical consulting; information system integration services; data processing and storage support services."
}
}Error Response Examples
Endpoint Not Open
{
"status": 403,
"code": "10002",
"result": "Server has not opened this endpoint",
"data": {}
}Token Expired or Invalid
{
"status": 401,
"code": "10001",
"result": "Token expired or invalid",
"data": {}
}Organization Name Is Empty
{
"status": 400,
"code": "10004",
"result": "Organization name is empty",
"data": {}
}Organization Does Not Exist
{
"status": 404,
"code": "10005",
"result": "Organization does not exist",
"data": {}
}Failed to Get Organization Information, Server Internal Error
{
"status": 500,
"code": "10003",
"result": "Failed to get organization information, server internal error",
"data": {}
}Error Code Description
| Code | Description |
|---|---|
| 10000 | Organization information retrieved successfully |
| 10001 | Token expired or invalid |
| 10002 | Server has not opened this endpoint |
| 10003 | Failed to get organization information, server internal error |
| 10004 | Organization name is empty |
| 10005 | Organization does not exist |
Tip
It is recommended to call this endpoint on pages where organization information needs to be displayed. Ensure that the user is logged in and passes a valid organization_name parameter.