Authorization service interface definition
Download OpenAPI specification:Download
Contains functions for querying quota information for systems and tenants
query all quota information of a tenant
Query all quota information of a tenant
Authorizations:
Sign
path Parameters
tenantId required | string tenant ID |
Responses
Response samples
- 200
- 400
- 500
Content type
application/json
{- "productQuota": {
- "TENANT_DEADLINE": "permanent"
}, - "featureQuota": {
- "MAX_TAG_NUM": {
- "total": 20000,
- "used": 0
}, - "MAX_COLLECTOR_NUM": {
- "total": 50,
- "used": 0
}, - "MAX_PC_LOGIN": {
- "total": 50,
- "used": 0
}
}
}
Query all quota information of the system
Query all quota information of the system
Authorizations:
Sign
Responses
Response samples
- 200
- 400
- 500
Content type
application/json
{- "productQuota": {
- "PLATFORM_DEADLINE": "permanent"
}, - "featureQuota": {
- "MAX_TAG_NUM": {
- "total": 20000,
- "used": 0
}, - "MAX_TENANT_NUM": {
- "total": 500,
- "used": 0
}, - "MAX_COLLECTOR_NUM": {
- "total": 500,
- "used": 0
}, - "MAX_PC_LOGIN": {
- "total": 500,
- "used": 0
}
}
}