GET /admin/tenants/{tenant_id}/quota
Get resource quota information for a specified tenant, including user limits, storage limits, etc.
Tenant Service `bearerAuth` application/json
Request Parameters
| Name | In | Type | Required | Default | Example | Constraints | Description |
id |
path |
string |
Yes |
|
|
|
Tenant ID |
Referenced Schemas
dto.ResourceQuotaDetailResponse
| Field | Type | Required | Example | Constraints | Description |
code |
integer |
No |
|
|
|
data |
dto.ResourceQuotaResponse |
No |
|
|
|
message |
string |
No |
|
|
|
timestamp |
string |
No |
|
|
|
dto.ResourceQuotaResponse
Tenant resource quota information
| Field | Type | Required | Example | Constraints | Description |
active_users |
integer |
No |
45 |
|
Active user count |
api_calls_per_month |
integer |
No |
10000 |
|
API call limit |
storage_gb |
integer |
No |
50 |
|
Storage limit |
tenant_id |
string |
No |
tnt_abc123 |
|
Tenant ID |
used_api_calls |
integer |
No |
5230 |
|
Used API calls |
used_storage_gb |
number |
No |
23.5 |
|
Used storage |
users_limit |
integer |
No |
100 |
|
User limit |
gitee_com_linmes_authms_base_dto.SimpleResponse
| Field | Type | Required | Example | Constraints | Description |
code |
integer |
No |
|
|
|
message |
string |
No |
|
|
|
timestamp |
string |
No |
|
|
|