Returns the complete license state -- edition, expiry, resource counts, and add-on details. For a lighter endpoint-only view, use Get License Endpoints.
https://{server-hostname}:8383/dcapi/license
Admin.READCopied!
Authorization: d92d4xxxxxxxxxxxxx15f52
curl --request GET \
--url https://appdomain/dcapi/license \
--header 'Accept: application/licenseDetails.v1+json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52'True when a registered license is running a higher-edition promotional trial. When true, additional keys trialDaysLeft, payNow, downgradeNow, and Action are included in the response.
Days remaining in the promotional trial. Included only when isLicensePromoted is true.
CTA text for purchasing the promoted license (e.g. 'Purchase License'). Included only when isLicensePromoted is true.
CTA text for reverting to the previous edition (e.g. 'Retain Enterprise'). Included only when isLicensePromoted is true.
Action identifier for the downgrade button. Value is always 'Downgrade'. Included only when isLicensePromoted is true.
Localized license edition display message (e.g. 'Enterprise Edition - Registered Version', 'Free', 'Security Edition - Trial Version'). Varies by license type and plan.
Product display name (e.g. 'Endpoint Central Cloud').
Build-number string (e.g. 11.3.2423.0).
Company name for registered licenses; username for free/trial licenses.
Formatted expiry date for registered licenses (e.g. 'Dec 31, 2030' or 'Never'). Absent for free and trial licenses.
String-formatted days remaining for trial licenses (e.g. '22'). Absent for registered and free licenses.
Subscription renewal frequency. Values: 'YEARLY' or 'MONTHLY'.
Add-on enablement status and detailed list including multi-language pack, training, and premium support.
True if the multi-language pack add-on is enabled.
True if any training add-on is purchased (Standard Online, Onsite, or Advanced Online).
True if premium support tier is active.
Detailed list of add-on statuses for UI rendering.
Add-on identifier name (e.g. 'Multi-language Pack', 'Training', 'Support Type').
Display label for the add-on status (e.g. 'Enabled', 'Disabled', 'Classic', 'Premium').
True if the add-on is enabled. Null for support type when it is Classic (not premium).
CTA text for purchasing/upgrading the add-on (e.g. 'Upgrade'). Null when the add-on is already enabled.
Technician/user license details with purchased and managed counts.
Purchased count for this resource.
Currently managed count for this resource.
Count excluded from license enforcement (e.g. SDP-integrated resources). Present only when applicable.
Relative URL to the console page listing the managed resources.
Endpoint license details with purchased count, managed count, and split breakdown. Present when the product supports endpoint counting.
Purchased endpoint count.
Total managed endpoint count (computers + MDM devices + OSD for unified plans).
Breakdown of managed endpoints by category. Present for UEM and Security edition plans.
Section heading for the split breakdown (e.g. 'Managed computer splitup:').
Explanatory note about what the OSD count represents.
Agent-managed computer count (excludes OSD-only).
Managed mobile device count. Present when MDM is integrated.
OS Deployed workstation count (OSD-only, no agent).
Per-category breakdown: Computers vs OSD Computers.
Count for this category.
Display label (e.g. 'Agent Installed', 'OS Deployed and agent installed', 'Computers', 'OSD Computers').
True when endpoint shortfall overflows into server licenses. Present only when endpoint managed count exceeds purchased.
Endpoints excluded from license enforcement (e.g. SDP-integrated). Present only when applicable.
Relative URL to the console page listing managed computers.
Computer license details with purchased and managed counts. Present when endpoints key is not used.
Purchased count for this resource.
Currently managed count for this resource.
Count excluded from license enforcement (e.g. SDP-integrated resources). Present only when applicable.
Relative URL to the console page listing the managed resources.
Server license details with purchased count, managed count, and split breakdown. Present when the product uses server-based licensing.
Purchased server count.
Total managed server count (SOM servers + OSD servers + endpoint shortfall overflow).
Breakdown of managed servers by category. Present for UEM and Security edition plans.
Section heading for the split breakdown (e.g. 'Managed servers splitup:').
Explanatory note about what the OSD count represents.
Total managed server count within the split.
OS Deployed server count (OSD + agent-installed overlap).
Per-category breakdown: Agent Installed vs OS Deployed and agent installed.
Count for this category.
Display label (e.g. 'Agent Installed', 'OS Deployed and agent installed', 'Computers', 'OSD Computers').
Total endpoint count that overflowed into server licenses. Present only when endpoint shortfall exists.
Endpoint overflow breakdown when endpoints exceed purchased count and spill into server licenses. Present only when shortfall exists.
Count for this category.
Display label (e.g. 'Agent Installed', 'OS Deployed and agent installed', 'Computers', 'OSD Computers').
Servers excluded from license enforcement (e.g. SDP-integrated). Present only when applicable.
Relative URL to the console page listing managed servers.
Storage add-on details with purchased (GB) and managed (formatted GB string) values. Present when storage add-on is enabled.
Purchased/allocated count for this resource.
Currently used/managed count. String for storage (formatted GB), integer for other resources.
SMS credit details with purchased and managed counts. Present when the product supports SMS credits.
Purchased/allocated count for this resource.
Currently used/managed count. String for storage (formatted GB), integer for other resources.
Error code. 1001 indicates an unexpected failure while fetching license details.
Human-readable error message describing the failure.
Registered license -- simplest structure with computers key, no servers, no storage, no sms
{
"licenseEdition": "Enterprise Edition - Registered Version",
"licenseExpiryDate": "Dec 31, 2030",
"addonDetails": {
"isBasicTrainingEnabled": false,
"isPremiumSupportEnabled": false,
"isMultiLangEnabled": false
},
"subscriptionFrequency": "YEARLY",
"buildNumber": "11.3.2423.0",
"productName": "(product-specific)",
"licensedTo": "Acme Corporation",
"users": {
"purchased": 5,
"managed": 3,
"viewUrl": "/webclient#/uems/admin/user-administration/users"
},
"computers": {
"purchased": 250,
"managed": 200,
"viewUrl": "/webclient#/uems/agent/som/computers?deviceType=2"
},
"isLicensePromoted": false
}
Trial license with computers key
{
"licenseEdition": "Enterprise Edition - Trial Version",
"evaluationDaysLeft": "22",
"addonDetails": {
"isBasicTrainingEnabled": false,
"isPremiumSupportEnabled": false,
"isMultiLangEnabled": false
},
"subscriptionFrequency": "YEARLY",
"buildNumber": "11.3.2423.0",
"productName": "(product-specific)",
"licensedTo": "admin",
"users": {
"purchased": 1,
"managed": 1,
"viewUrl": "/webclient#/uems/admin/user-administration/users"
},
"computers": {
"purchased": 25,
"managed": 10,
"viewUrl": "/webclient#/uems/agent/som/computers?deviceType=2"
},
"isLicensePromoted": false
}
Free edition with computers key
{
"licenseEdition": "Free",
"addonDetails": {
"isBasicTrainingEnabled": false,
"isPremiumSupportEnabled": false,
"isMultiLangEnabled": false
},
"subscriptionFrequency": "YEARLY",
"buildNumber": "11.3.2423.0",
"productName": "(product-specific)",
"licensedTo": "admin",
"users": {
"purchased": 1,
"managed": 1,
"viewUrl": "/webclient#/uems/admin/user-administration/users"
},
"computers": {
"purchased": 25,
"managed": 20,
"viewUrl": "/webclient#/uems/agent/som/computers?deviceType=2"
},
"isLicensePromoted": false
}
Unexpected server error while fetching license details
{
"error_description": "An internal error occurred while processing the request.",
"error_code": 1001
}
![]()
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.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.