GET cluster license and billed usage

  • Reference
  • Published Dec 08, 2025

Dynatrace Managed version 1.326+

Get cluster license details and billed usage.

This API is only compatible with Dynatrace classic licensing.

Authentication

To execute this request, you need the Service Provider API (ServiceProviderAPI) permission assigned to your API token. Generate your API token via Cluster Management Console (CMC). To learn how to obtain and use it, see Cluster API - Tokens and authentication.

Endpoint

/api/cluster/v2/clusterLicense

Parameters

The request doesn't provide any configurable parameters.

Response

Response codes

CodeTypeDescription
200ClusterLicense

Successful operation.

Response body objects

The ClusterLicense object

ElementTypeDescription
accountNamestring

Account name

clusterIdstring

Cluster ID

contactEmailAddressstring

Contact email address

lastBillingTimestring

Last time when billing data was refreshed

licenseExpirationTimestring

License expiration date

licenseKeystring

License key

licenseNamestring

License name

licenseStatusstring

License status

licenseTypestring

License type

productVersionstring

Current version

usageOfDduUnitsLicenseUsageOfUnit

Cluster license usage of Davis data units (DDU)

usageOfDemUnitsLicenseUsageOfUnit

Cluster license usage of Davis data units (DDU)

usageOfHostUnitsLicenseUsageOfUnit

Cluster license usage of Davis data units (DDU)

The LicenseUsageOfUnit object

Cluster license usage of Davis data units (DDU)

ElementTypeDescription
overageUsageOverageUsageOfUnit

Overage usage if applicable

quotainteger

Cluster license quota

remainingnumber

Remaining usage of quota

remainingPercentnumber

Remaining usage of quota as percentage

usagenumber

Current usage of quota

usagePercentnumber

Current usage of quota as percentage

usageStatusstring

Current status of license usage

The element can hold these values
  • OVERAGE_QUOTA_REACHED
  • QUOTA_REACHED
  • USING_OVERAGE
  • USING_QUOTA

The OverageUsageOfUnit object

Overage usage if applicable

ElementTypeDescription
overageQuotainteger

Overage quota if set, null if not

overageUsagenumber

Overage used

overageUsagePercentnumber

Overage used as percentage (filled only if overage limit is set)

remainingOveragenumber

Remaining overage (filled only if overage limit is set)

remainingOveragePercentnumber

Remaining overage as percentage (filled only if overage limit is set)

Response body JSON models

{
"accountName": "string",
"clusterId": "string",
"contactEmailAddress": "string",
"lastBillingTime": "string",
"licenseExpirationTime": "string",
"licenseKey": "string",
"licenseName": "string",
"licenseStatus": "string",
"licenseType": "string",
"productVersion": "string",
"usageOfDduUnits": {
"overageUsage": {
"overageQuota": 1,
"overageUsage": 1,
"overageUsagePercent": 1,
"remainingOverage": 1,
"remainingOveragePercent": 1
},
"quota": 1,
"remaining": 1,
"remainingPercent": 1,
"usage": 1,
"usagePercent": 1,
"usageStatus": "OVERAGE_QUOTA_REACHED"
},
"usageOfDemUnits": {},
"usageOfHostUnits": {}
}