Account limits API - GET account limits

  • Latest Dynatrace
  • Reference
  • Published Dec 04, 2025

Gets a list of account limits assigned for an account.

The request produces an application/json payload.

GET

https://api.dynatrace.com/iam/v1/accounts/{accountUuid}/limits

Authentication

To execute this request, you need the Allow read access for identity resources (users and groups) (account-idm-read) scope assigned to your token. To learn how to obtain and use it, see OAuth clients.

Parameters

ParameterTypeDescriptionInRequired
accountUuidstring-pathRequired

Response

Response codes

CodeTypeDescription
200AccountLimitsPage

Successful response - information about limits defined for a level.

Response body objects

The AccountLimitsPage object

ElementTypeDescription
pageSizenumber

Page size.

pageNumbernumber

Page number.

totalnumber

Total count of entries.

resultsAccountLimitsDto[]-

The AccountLimitsDto object

ElementTypeDescription
currentValuenumber-
limitTypestring-
limitValuenumber-

Response body JSON models

{
"pageSize": 1,
"pageNumber": 1,
"total": 1,
"results": [
{
"currentValue": 1,
"limitType": "string",
"limitValue": 1
}
]
}

Example

In this example, the request lists the account limits assigned to the accountUuid 2b794097-8ad2-4b32-b923-0131da2eeddf.

Curl

curl -X 'GET' \
'https://api.dynatrace.com/iam/v1/accounts/2b794097-8ad2-4b32-b923-0131da2eeddf/limits' \
-H 'accept: application/json' \
-H 'Authorization: Bearer 4OWE3NCIsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiIwIn0s'

Request URL

https://api.dynatrace.com/iam/v1/accounts/2b345097-8ad2-4b32-b678-0131da2eeddf/limits

Response body

{
"pageSize": 1000,
"pageNumber": 1,
"total": 4,
"results": [
{
"limitType": "REGULAR_USER",
"limitValue": 10000,
"currentValue": 148
},
{
"limitType": "MAX_GROUPS_PER_ACCOUNT",
"limitValue": 1000,
"currentValue": 167
},
{
"limitType": "MAX_PERMISSIONS_PER_GROUP",
"limitValue": 7000,
"currentValue": 12
},
{
"limitType": "MAX_PLATFORM_TOKENS_PER_USER",
"limitValue": 10,
"currentValue": 4
}
]
}

Response code

200