Retrieve client multitoken statistics
Learn about retrieving statistics for multitokens for a specific client.
Use this API to retrieve the status of multitokens usage for a specific client. Only customer administrators and users with customer client management permissions can use this API.
- ROLE_ADMIN_CUSTOMER
- Auth.Customer.Clients READ
Request
GET https://auth.reltio.com/oauth/customers/{customerId}/clients/{clientId}/multitokens
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. The created client ID is automatically associated with your customer ID. |
clientId
| Yes | The client identifier that is unique across all customers. |
Response
The response body contains the status of the multitoken functionality and the count of currently active tokens.Example
RequestGET https://auth.reltio.com/oauth/customers/ABC/clients/test_client/multitokens
Headers: Authorization: Bearer <Access-Token>
Response
{
"status": "enabled",
"tokensCount": 100
}