Environment management API - GET all clusters of a managed account

Lists all clusters of a Dynatrace Managed account.

The request produces an application/json payload.

GET

https://api.dynatrace.com/env/v1/accounts/{accountUuid}/clusters

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 Management > Identity & access management > OAuth clients page, during creation of an OAuth client.

pathrequired

Response

Response codes

CodeTypeDescription
200ClusterListDto-

Response body objects

The ClusterListDto object

ElementTypeDescription
dataClusterDto[]

Lists all clusters in a managed account

The ClusterDto object

ElementTypeDescription
clusterIdstring

The UUID of the cluster.

Response body JSON model

{
"data": [
{
"clusterId": "string"
}
]
}