Quota management API - GET host unit quotas

  • Reference
  • Deprecated

Gets the host units quotas of your Dynatrace account.

The request produces an application/json payload.

GET

https://api.dynatrace.com/env/v1/accounts/{accountUuid}/quotas/host-monitoring

Authentication

To execute this request, you need the Allow read access for environment resources (account-env-read) scope assigned to your token. To learn how to obtain and use it, see Authentication.

Parameters

ParameterTypeDescriptionInRequired
accountUuidstring

The ID of the required account.

You can find the UUID on the Account > Account management API page, during creation of an OAuth client.

pathrequired

Response

Response codes

CodeTypeDescription
200ContractLimitDto

Success. The response contains the host units quota per environment of the account.

Response body objects

The ContractLimitDto object

ElementTypeDescription
accountInfoAccountContractDto-
environmentInfoEnvironmentLimitListDto[]-

The AccountContractDto object

ElementTypeDescription
concurrentHostsUnitsnumber

The total amount of host units that the account owns.

hostUnitOverageAllowedboolean

The overage is (true) or is not (false) enabled for the account.

If the overage is enabled, the account can exceed the quota. To learn more about host units consumption, see Application and Infrastructure Monitoring in Dynatrace Documentation.

The EnvironmentLimitListDto object

ElementTypeDescription
uuidstring

The ID of the environment.

concurrentHostsUnitsnumber

The total amount of host units assigned to the environment.

hostUnitOverageAllowedboolean

The overage is (true) or is not (false) enabled for the environment.

If the overage is enabled, the environment can exceed the quota. To learn more about host units consumption, see Application and Infrastructure Monitoring in Dynatrace Documentation.

namestring

The display name of the environment.

Response body JSON model

{
"accountInfo": {
"concurrentHostsUnits": 1,
"hostUnitOverageAllowed": true
},
"environmentInfo": [
{
"uuid": "string",
"concurrentHostsUnits": 1,
"hostUnitOverageAllowed": true,
"name": "string"
}
]
}