Accelerate the Value of Data

Revoke all client credentials tokens

Learn about revoking all client credential tokens.

Use this API to revoke all active tokens that were issued by the specific client with the client_credentials grant type. Only customer administrators and users with customer client management permissions can use this API.

Request

PUT https://auth.reltio.com/oauth/customers/{customerId}/clients/{clientId}/revoketokens
You need either of the following role and permission to use this API:
  • ROLE_ADMIN_CUSTOMER
  • Auth.Customer.Clients UPDATE
Table 1. Parameters
Name Required Description
HeadersAuthorization YesInformation about the authentication access token should be in the format: "Bearer {accessToken}". For more information, see topic Authentication API.
URL Parameters customerId YesA valid Customer ID.
clientId YesA valid Client ID.

Response

The response body contains the success message when the active tokens are revoked.

Example

Request
PUT https://auth.reltio.com/oauth/customers/ABC/clients/test_client/revoketokens
Headers: Authorization: Bearer <Access-Token>
Response
{
  "status": "success"
}