組織 Organization
提供組織清單及細節API。
Get Organization List
This API retrieves the list of organizations along with their basic information, such as organization name and the organization they belong to.
Endpoint: GET /organizations
Parameters:
ids
Fetch specific ids.
string
No
-
offset
The offset for pagination.
integer
No
0
limit
The maximum number of results per page.
integer
No
100
Example Request:
Example Response:
Response Fields:
id
The unique identifier for the organization.
integer
name
The name of the organization.
string
belongs_to
The ID of the organization this organization belongs to.
integer
Get Organization Details
This API retrieves the details of a specific organization by organization ID, including organization name and the organization it belongs to.
Endpoint: GET /organizations/:organization_id
Path Parameters:
organization_id
The unique identifier for the organization.
integer
required
Example Request:
Example Response:
Response Fields:
organization_id
The unique identifier for the organization.
integer
organization_name
The name of the organization.
string
belongs_to
The ID of the organization this organization belongs to.
integer
Last updated