Get Enterprise List
Overview
- This API is used to get the list of enterprises under the agent;
Authorization
Data Dimension Authorization | Agent-level Authorization | This API requires agent-level authorization. You need an authorization account with agent-level authorization to call this API. Please refer to Authorization Methods. |
---|
Interface Dimension Authorization | Default Authorization | This API is granted by default, so you don't need to apply for interface dimension authorization separately for your authorization account. Please refer to Authorization Methods. |
---|
Request
Request Entry Point
Region | Entry Point |
---|---|
China Region | https://openapi.orionstar.com |
Europe Region | https://global-openapi.orionstar.com |
USA Region | https://us-openapi.orionstar.com |
Japan Region | https://jp-openapi.orionstar.com |
Request Protocol
HTTP URL Path | /v1/corp/agency_corp_list |
---|---|
HTTP Method | GET |
Request URL Parameters
Parameter | Type | Required | Description |
---|---|---|---|
ov_agencyid | string | Please refer to the parameter description | This parameter is required if the authorized agency is a primary agency. Primary agency ID. |
sub_agencyid | string | Please refer to the parameter description | This parameter is required if the authorized agency is a secondary agency. Secondary agency ID. |
ov_corpid | string | No | Enterprise ID. If this parameter is passed, only the corresponding enterprise will be returned. Use a comma to separate multiple enterprise IDs. |
page | int | No | Pagination parameter. Current page number, starting from 1, default is 1. |
page_rows | int | No | Pagination parameter. Number of data rows per page, default is 2000. |
Request cURL Example
# Please replace the entry point with yours according to your region curl --location 'https://global-openapi.orionstar.com/v1/corp/agency_corp_list?ov_agencyid=test_ov_agencyid' \ --header 'Authorization: Bearer YOUR-ACCESS-TOKEN'
Response
Common Response Body
Parameter | Type | Description |
---|---|---|
code | int | Error code. 0 means success, non-zero means failure, Please refer to Error Codes. |
msg | string | Error description. When there is a failure, a specific error description will be provided. |
req_id | string | Log tracking ID. When encountering problems that require assistance from OrionStar, please provide this tracking ID value. |
data | object | Business data object, see below for details Response Body Data Object. |
Response Body Data Object
Parameter | Type | Description |
---|---|---|
total_count | string | Pagination parameter. Total number of data rows. |
corp_list | array | Array of enterprise information, where each element is a corp enterprise information object. Please refer to corp - Enterprise Information Object for details. |
corp - Enterprise Information Object
Parameter | Type | Description |
---|---|---|
ov_corpid | string | Enterprise ID |
corp_name | string | Enterprise name |
create_time | string | Creation time, integer timestamp in seconds. |
update_time | string | Last modification time, integer timestamp in seconds. |
Response Body Example
{ "code": 0, "msg": "", "data": { "total_count": "10", "corp_list": [ { "ov_corpid": "orion.ovs.entprise.12345678", "corp_name": "Test Enterprise", "create_time": "1711966681", "update_time": "1711966681" }, // ... Omitted information about other 9 enterprise objects ] } }