Accelerate the Value of Data

Get a customer client

Learn about retrieving a single client using the client ID.

Use this API to retrieve a single client using the client ID.

You need either of the following role and permission to use this API:
  • ROLE_ADMIN_CUSTOMER
  • Auth.Customer.Clients READ

Request

GET https://auth.reltio.com/oauth/customers/{customerId}/clients/{clientId}
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 client ID mentioned in the parameters.

Example

Request
GET https://auth.reltio.com/oauth/customers/ABC/clients/test_client
Headers: Authorization: Bearer {Access-Token}
Response
{
    "clientId": "test_client",
    "scope": [
        "ROLE_DATALOADER_TEST"
    ],
    "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
}