Get all customer clients
Learn about retrieving all clients that are associated with a customer.
Use this API to retrieve all clients that are associated with a customer.
- ROLE_ADMIN_CUSTOMER
- Auth.Customer.Clients READ
Request
GET https://auth.reltio.com/oauth/customers/{customerId}/clients
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. |
Response
List of clients that belong to you.
Example
Request
GET https://auth.reltio.com/oauth/customers/ABC/clients
Response
[
{
"clientId": "test_client",
"scope":[],
"clientPermissions":
{
"roles":{
"ROLE_ADMIN_TENANT": ["tenant1"],
"ROLE_API": ["tenant1"]
}
},
"authorities": [],
"resourceIds": [],
"authorizedGrantTypes": [
"client_credentials"
],
"clientDescription": null,
"clientName": null,
"clientEmail": null,
"redirectUri": [
"http://localhost"
],
"accessTokenValidity": null,
"refreshTokenValidity": null,
"defaultRolesAssignmentEnabled": false,
"clientAuthenticationMethods": [
"client_secret_post",
"client_secret_basic"
],
"enabled" : true
]