List available Cluster tokens
This page will soon be available only on the dedicated Dynatrace Managed Documentation site. Update your bookmarks.
This API call lists available tokens in your environment.
You can narrow down the output by adding parameters. The token has to match all the specified parameters.
You can also specify the limit of returned tokens.
This list may contain tokens which were created automatically (for example, InstallerDownload, Mobile, …) and are not visible on the Settings page. Deleting these might have unintended side-effects as they may still be in use.
Authentication
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.
Endpoint
/api/cluster/v2/tokens
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
limit | integer | Limits the maximum number of returned tokens. If not set the value of Maximum value is 1000000. | query | optional |
user | string | Filters the resulting set of tokens by user, who owns the token. | query | optional |
permissions | string[] | Filters the resulting set of tokens by scopes assigned to the token. You can specify several permissions in the following format:
| query | optional |
from | integer | Last used after this timestamp (UTC milliseconds). | query | optional |
to | integer | Last used before this timestamp (UTC milliseconds). | query | optional |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | StubList | Success |
Response body objects
The StubList
object
An ordered list of short representations of Dynatrace entities.
Element | Type | Description |
---|---|---|
values | EntityShortRepresentation[] | An ordered list of short representations of Dynatrace entities. |
The EntityShortRepresentation
object
The short representation of a Dynatrace entity.
Element | Type | Description |
---|---|---|
id | string | The ID of the Dynatrace entity. |
name | string | The name of the Dynatrace entity. |
description | string | A short description of the Dynatrace entity. |
Response body JSON model
1{2 "values": [3 {4 "id": "6a98d7bc-abb9-44f8-ae6a-73e68e71812a",5 "name": "Dynatrace entity 1",6 "description": "Dynatrace entity 1 for the REST API example"7 },8 {9 "id": "ee70f7d3-9a4e-4f5f-94d2-c9d6156f1618",10 "name": "Dynatrace entity 2"11 },12 {13 "id": "8cdabe77-9e1a-4be8-b3df-269dd6fa9d7f"14 }15 ]16}
Example
In this example, the request lists API tokens in the myManaged.cluster.com
environment for user Pete
with cluster token management permissions.
Curl
1curl -X GET "https://myManaged.cluster.com/api/cluster/v2/tokens?limit=1000&user=Pete&permissions=ClusterTokenManagement"2 -H "accept: application/json; charset=utf-8"
Request URL
1https://myManaged.cluster.com/api/cluster/v2/tokens?limit=1000
Response body
1{2 "values": [3 {4 "id": "6a98d7bc-abb9-44f8-ae6a-73e68e71812a",5 "name": "Dynatrace entity 1",6 "description": "Dynatrace entity 1 for the REST API example"7 },8 {9 "id": "ee70f7d3-9a4e-4f5f-94d2-c9d6156f1618",10 "name": "Dynatrace entity 2"11 },12 {13 "id": "8cdabe77-9e1a-4be8-b3df-269dd6fa9d7f"14 }15 ]16}
Response code
200