This API call updates the specified Dynatrace Cluster token. You can:
To execute this request, you need the Cluster token management (ClusterTokenManagement
) permission assigned to your API token. Generate your API token via Cluster Management Console (CMC). To learn how to obtain and use it, see Cluster API - Authentication.
/api/cluster/v2/tokens
The ID of the token to be updated.
You can't update the token you're using for authentication of the request.
UpdateToken
objectThe token is revoked (true
) or active (false
).
The name of the token.
The list of permissions assigned to the token.
Apart from the new permissions, you need to submit the existing permissions you want to keep, too. Any existing permission, missing in the payload, is revoked.
DiagnosticExport
: DiagnosticExport.ControlManagement
: ControlManagement.UnattendedInstall
: UnattendedInstall.ServiceProviderAPI
: Service Provider API.ExternalSyntheticIntegration
: Create and read synthetic monitors, locations, and nodes.ClusterTokenManagement
: Cluster token management.ReadSyntheticData
: Read synthetic monitors, locations, and nodes.Nodekeeper
: Nodekeeper access for node management.EnvironmentTokenManagement
: "Token Management" Token creation for existing environments.activeGateTokenManagement.read
: Read ActiveGate tokens.activeGateTokenManagement.create
: Create ActiveGate tokens.activeGateTokenManagement.write
: Write ActiveGate tokens.settings.read
: Read settings.settings.write
: Write settings.apiTokens.read
: Read API tokens.apiTokens.write
: Write API tokens.DiagnosticExport
ControlManagement
UnattendedInstall
ServiceProviderAPI
ExternalSyntheticIntegration
ClusterTokenManagement
ReadSyntheticData
Nodekeeper
EnvironmentTokenManagement
activeGateTokenManagement.read
activeGateTokenManagement.create
activeGateTokenManagement.write
settings.read
settings.write
apiTokens.read
apiTokens.write
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"revoked": true,"name": "string","scopes": ["DiagnosticExport"]}
Success. The token has been updated.
In this example, the request queries the metadata of the specific token, which has the ID of 4e9f128e-04f9-4795-pj319-8b7c-3c14a5e885e4
. It changes the token scope by updating the token metadata. The name and validity of the token remain intact. The response code of 204 indicates that the update was successful.
curl -X PUT "https://myManaged.cluster.com/api/cluster/v2/tokens/4e9f128e-04f9-4795-pj319-8b7c-3c14a5e885e4"-H "accept: application/json; charset=utf-8"-H "Content-Type: application/json; charset=utf-8"-d "{ \"revoked\": \"true\", \"name\": \"updated token\", \"scopes\": [ \"UnattendedInstall\" ]}"
https://myManaged.cluster.com/api/cluster/v2/tokens/4e9f128e-04f9-4795-pj319-8b7c-3c14a5e885e4
{"revoked": "true","name": "updated token","scopes": ["UnattendedInstall"]}
204