Tenant Settings API
The Tenant Settings API provides endpoints for retrieving configuration and licensing limits for your Lumetry tenant.
Get Limits
GET /api/settings/limits
Returns the current usage limits and licensing information for the tenant.
Response
The response contains the limits based on the deployment type and license.
Properties:
maxIcu(Integer): The maximum number of Infrastructure Consumption Units (ICUs) allowed.maxBcu(Integer): The maximum number of Business Consumption Units (BCUs) allowed.isValid(Boolean): Indicates whether the current license is valid.daysRemaining(Integer): The number of days remaining before the license expires.deploymentType(String): The type of deployment, which will be either"saas","onprem", or"isolated".
Example Response:
{
"maxIcu": 1000,
"maxBcu": 500,
"isValid": true,
"daysRemaining": 365,
"deploymentType": "saas"
}