How can I find all of the client_ids for my tenant?

Question

 

 How can I find all of the client_ids for my tenant?  

 

Answer

✅ How to Retrieve All Client IDs for Your Tenant

To obtain a list of all application clients (client_ids) linked to your customer account, you can use the following API call:

GET https://auth.reltio.com/oauth/customers/{customer_name}

 

Replace {customer_name} with your actual customer name.

🔐 Required Authorization

Ensure you include an authorization header with a valid access token that has the necessary permissions.

Authorization: Bearer {access_token}

 

📋 Sample Response

{
  "applicationClients": [
    "qlik_reltio",
    "my_custom_client"
  ],
  "customerSpecificRoles": [
    "SUPER_ROLE",
    "ROLE_SURVIVORSHIP_EDIT",
    "ABC_READ_ONLY_ROLE",
    "DCR_USER_ROLE"
  ]
}

 

This response provides a list of applicationClients (your client_ids) and the associated customerSpecificRoles.


🔍 Additional Resources

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.