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
- For more details on managing application clients, refer to the Client Credentials at a Glance documentation.docs.reltio.com+2docs.reltio.com+2docs.reltio.com+2
- To learn how to add a new client, see the Add New Client guide.docs.reltio.com
- For information on obtaining access tokens using client credentials, consult the Obtaining Access Tokens with Client Credentials Grant Type documentation.docs.reltio.com+11docs.reltio.com+11docs.relti
Comments
Please sign in to leave a comment.