Tenant tokens API - POST finish rotation
Completes the rotation of the tenant token. The old token becomes invalid. Execute the request only when you have updated all OneAgents and ActiveGates as described in Rotate tenant token.
To avoid data loss, both old and new tokens are valid during the rotation process.
The request produces an application/json
payload.
This request is an Early Adopter release and may be changed in non-compatible way.
POST |
|
Authentication
To execute this request, you need the Tenant token rotation (tenantTokenRotation.write
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
The request doesn't provide any configurable parameters.
Response
Response codes
Code | Description |
---|---|
200 | Success. The rotation process is completed. The active field of the response contains the new tenant token. |
400 | No ongoing rotation process. |
Response body
The TenantTokenConfig object
Configuration of a tenant token.
Element | Type | Description |
---|---|---|
old | TenantToken | |
active | TenantToken |
The TenantToken object
Tenant token
Element | Type | Description |
---|---|---|
value | string | The secret of the tenant token. |
{
"old": {
"value": "string"
},
"active": {
"value": "string"
}
}
Example
In this example, the request completes the rotation process started in start request example.
The response code of 200 indicates a successful request. The old token 1234567890qrstuvwxyz is no longer valid.
The API token is passed in the Authorization header.
Curl
curl -X POST \
https://mySampleEnv.live.dynatrace.com/api/v2/tenantTokenRotation/finish \
-H 'Authorization: Api-Token abcdefjhij1234567890' \
-H 'Accept: application/json'
Response body
{
"active": {
"value": "zyxwvutsrq0987654321"
},
"old": {
"value": "1234567890qrstuvwxyz"
}
}
Response code
200