Quota management API - GET host unit quotas

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

Parameter
Type
Description
In
Required
accountUuid
string

The ID of the required account.

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

path
required

Response

Response codes

Code
Type
Description
200

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

Response body objects

The ContractLimitDto object

Element
Type
Description

The AccountContractDto object

Element
Type
Description
concurrentHostsUnits
number

The total amount of host units that the account owns.

hostUnitOverageAllowed
boolean

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

Element
Type
Description
uuid
string

The ID of the environment.

concurrentHostsUnits
number

The total amount of host units assigned to the environment.

hostUnitOverageAllowed
boolean

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.

name
string

The display name of the environment.

Response body JSON model

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