GET total billed usage per environment

  • Reference
  • Published Dec 08, 2025

Dynatrace Managed version 1.326+

Get the total billed usage per environment, including usage from past contracts.

  • This API is only available for Dynatrace Managed in online mode.
  • 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/environment/total

Parameters

The request doesn't provide any configurable parameters.

Response

Response codes

CodeTypeDescription
200TotalEnvironmentLicenseUsageList

Successful operation.

Response body objects

The TotalEnvironmentLicenseUsageList object

ElementTypeDescription
totalLicenseUsageDataPerEnvironmentTotalLicenseUsageForEnvironment[]

List of total cluster license usage data separated by environment

The TotalLicenseUsageForEnvironment object

List of total cluster license usage data separated by environment

ElementTypeDescription
environmentUuidstring

Environment UUID

usageOfDduUnitsnumber

Total cluster license usage of Davis data units (DDU) per environment

usageOfDemUnitsnumber

Total cluster license usage of DEM Units per environment

usageOfHostUnitsnumber

Total cluster license usage of Host Units per environment

Response body JSON models

{
"totalLicenseUsageDataPerEnvironment": [
{
"environmentUuid": "string",
"usageOfDduUnits": 1,
"usageOfDemUnits": 1,
"usageOfHostUnits": 1
}
]
}