This API is deprecated. Use the Access tokens API instead.
Lists metadata of a Dynatrace API authentication token by the token itself.
Alternatively, you can retrieve metadata by submitting the ID of the token with the GET token metadata call.
The request consumes and produces an application/json
payload.
POST | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/tokens/lookup |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/tokens/lookup |
To execute this request, you need an access token with any scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameter | Type | Description | In | Required |
---|---|---|---|---|
body | Token | The JSON body of the request. Contains the required token. | body | required |
Token
objectElement | Type | Description | Required |
---|---|---|---|
token | string | Dynatrace API authentication token. | required |
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"token": "abcdefjhij1234567890"}
Code | Type | Description |
---|---|---|
200 | Token | Success |
4XX | Error | Client side error. |
5XX | Error | Server side error. |
TokenMetadata
objectMetadata of a token.
Element | Type | Description |
---|---|---|
created | integer | The creation time as a unix timestamp in milliseconds. |
expires | integer | The expiration time as a unix timestamp in milliseconds. |
id | string | The ID of the token. |
lastUse | integer | The unix timestamp in milliseconds when the token was last used. |
name | string | The name of the token. |
personalAccessToken | boolean | The token is a personal access token ( |
revoked | boolean | Revocation status of the token. Revoked tokens are disabled. |
scopes | string[] | A list of scopes assigned to the token.
|
userId | string | The owner of the token. |
{"created": 1554076800000,"expires": 1585976400000,"id": "acbed0c4-4ef1-4303-991f-102510a69322","lastUse": 1554354000000,"name": "myToken","personalAccessToken": true,"revoked": true,"scopes": ["DataExport","ReadConfig","WriteConfig"],"userId": "john.smith"}
In this example, the request queries the metadata of the abcdefjhij1234567890 token.
The API token is passed in the Authorization header.
The token, as displayed in the Dynatrace interface, has the following settings:
curl -X POST \https://mySampleEnv.live.dynatrace.com/api/v1/tokens/lookup \-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890' \-H 'Content-Type: application/json' \-d '{"token": "abcdefjhij1234567890"}'
https://mySampleEnv.live.dynatrace.com/api/v1/tokens/lookup
{"id": "d5836312-5790-4e80-afcf-09971954c3ea","name": "admin","userId": "admin@mysampleenv.com","created": "2019-03-13T09:45:40Z","lastUse": "2019-04-04T09:13:23Z","scopes": ["ExternalSyntheticIntegration","DataPrivacy","WriteConfig","DssFileManagement","LogExport","DTAQLAccess","ReadConfig","CaptureRequestData","ReadSyntheticData","DataExport","UserSessionAnonymization","MaintenanceWindows","LogImport","TenantTokenManagement"]}
200