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
- ROLE_ADMIN_CUSTOMER
- Auth.Customer.Clients UPDATE
Name | Required | Description | |
---|---|---|---|
Headers | Authorization | Yes | Information about the authentication access token should be in the format: "Bearer {accessToken}". For more information, see topic Authentication API. |
URL Parameters | customerId
| Yes | A valid Customer ID. |
clientId
| Yes | A valid Client ID. |
Response
The response body contains the success message when the active tokens are revoked.Example
RequestPUT https://auth.reltio.com/oauth/customers/ABC/clients/test_client/revoketokens
Headers: Authorization: Bearer <Access-Token>
Response
{
"status": "success"
}