# Check whether any license limits have been reached Returns boolean flags inside `isLicenseLimitReached` indicating whether resource license limits have been reached. ## Endpoint `GET /dcapi/licenseMeta` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/licenseMeta` ### Scope `Admin.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/licenseMeta.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/licenseMeta \ --header 'Accept: application/licenseMeta.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **isLicenseLimitReached** (`JSON Object`): Wrapper containing boolean flags for each resource type indicating whether the license limit has been reached. ### HTTP Code 500 Response Body — `application/json` - `JSON Object` - **error_code** (`integer`): Error code. `1001` indicates an unexpected failure while checking license limits. - **error_description** (`string`): Human-readable error message describing the failure. ### Possible Response Codes - **200** — HTTP code - **500** — HTTP code ### Sample Response: HTTP 200 All endpoint limits are within purchased counts: ```json { "isLicenseLimitReached": { "endpoints": false } } ``` Registered license with both endpoint and server limits -- both within purchased counts: ```json { "isLicenseLimitReached": { "endpoints": false, "servers": false } } ``` Both endpoint and server limits exceeded -- no server capacity to absorb endpoint overflow: ```json { "isLicenseLimitReached": { "endpoints": true, "servers": true } } ``` Computer limit is exceeded while server limit is within range: ```json { "isLicenseLimitReached": { "servers": false, "computers": true } } ``` System limit is within purchased counts: ```json { "isLicenseLimitReached": { "systems": false } } ``` ### Sample Response: HTTP 500 Unexpected server error while checking license limits: ```json { "error_description": "An internal error occurred while processing the request.", "error_code": 1001 } ``` ## Rate Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.