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
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.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| accountUuid | string | - | path | Required |
| Code | Type | Description |
|---|---|---|
| 200 | Account | Successful response - information about limits defined for a level. |
AccountLimitsPage object| Element | Type | Description |
|---|---|---|
| pageSize | number | Page size. |
| pageNumber | number | Page number. |
| total | number | Total count of entries. |
| results | Account | - |
AccountLimitsDto object| Element | Type | Description |
|---|---|---|
| currentValue | number | - |
| limitType | string | - |
| limitValue | number | - |
{"pageSize": 1,"pageNumber": 1,"total": 1,"results": [{"currentValue": 1,"limitType": "string","limitValue": 1}]}
In this example, the request lists the account limits assigned to the accountUuid 2b794097-8ad2-4b32-b923-0131da2eeddf.
curl -X 'GET' \'https://api.dynatrace.com/iam/v1/accounts/2b794097-8ad2-4b32-b923-0131da2eeddf/limits' \-H 'accept: application/json' \-H 'Authorization: Bearer 4OWE3NCIsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiIwIn0s'
https://api.dynatrace.com/iam/v1/accounts/2b345097-8ad2-4b32-b678-0131da2eeddf/limits
{"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}]}
200