Endpoint URL: {identityDomain} /config/{appId} /clients
Description
Returns permission and metadata information for all your API clients, including:
- _self. Configuration endpoint for the API client. For example, suppose your configuration domain is https://v1.api.us.janrain.com/and the _self value for a client is /config/htb8fuhxnf8e38jrzub3c7pfrr/clients/xj2dmg2mqsm6a8gx89cwn3fu929p4pd. Combining those two values gives you the configuration endpoint for managing that client (adding/modifying property values, deleting the client, etc.):
https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr/clients/xj2dmg2mqsm6a8gx89cwn3fu929p4pdm
- _id.The API client ID.
- _secret. The API client secret (i.e., client password). Client secrets should never be publicly exposed.
- _settings. Configuration endpoint for the API client's settings,
- name. Name (and description) of the API client.
- ipWhitelist. Collection of IP addresses allowed to interact with the client; for example, the address 192.168.1.0/24 allows access to IP addresses 192.168.10 through 192.168.1.255. The default value is 0.0.0.0/0, which allows access to all IP addresses.
- features. Client features sets associated with this API client. Clients can be associated with more than one feature set.
Your API call must have the owner client permission in order to return all client data. Note that API clients make authenticated requests against the Identity Cloud REST APIs, and clients with the login_client feature set help authenticate and register users.
Respects the API Client Allow List: Yes
URI Parameters
Parameter | Type | Required | Description |
---|---|---|---|
has_feature | string | Enables you to return only those API clients who have the specified feature sets. Each filter set that you want to filter on is passed in a has_feature parameter; for example, this syntax returns only API clients that have the login_client feature set: This syntax returns all the API clients that have both the direct_access and the access_issuer feature sets:
|
API Client Permissions
The following table indicates the API clients that can (and the API clients that can't) be used to call this endpoint:
owner | access_issuer | direct_access | direct_read_access | login_client |
Yes | No | No | No | No |
Authentication
This endpoint supports Basic authentication.
How to Create an Authentication String
Base URL
The base URL for this endpoint is your Configuration API domain followed by /config/ followed by your application ID. For example, if you are in the US region and your application ID is htb8fuhxnf8e38jrzub3c7pfrr, then your base URL would be:
https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr
Allowed regions are:
- us
- eu
- au
- sa
- cn
- sg
Sample Request URL
In the following URL, replace htb8fuhxnf8e38jrzub3c7pfrrwith your application ID:
https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr/clients
Sample Request (curl)
This command returns information about all the API clients associated with the application htb8fuhxnf8e38jrzub3c7pfrr.
curl -X GET \
-H 'Authorization: Basic c2dueXZ1czZwYzRqbTdraHIybmVxNWdzODlnYnIyZXE6d3Q0YzN1bjl3a2tjZnZ5a25xeDQ0eW5jNDc2YWZzNjg' \ https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr/clients
Running this command in Postman
Responses
200 OK
If your call to this endpoint succeeds, you'll get back information for each of the API clients associated with the specified application:
[
{
"_id": "ay6e3qmucvdyr29hmpvxjdjupe8bcsky",
"_secret": "9956y4tv342e76nj9zub511ufbned98j",
"_self": "/config/73jzx34tnr5ruhsze494ssgz2b/clients/ay6e3qmucvdyr29hmpvxjdjupe8bcsky",
"_settings": "/config/73jzx34tnr5ruhsze494ssgz2b/clients/ay6e3qmucvdyr29hmpvxjdjupe8bcsky/settings",
"features": [
"owner"
],
"ipWhitelist": [
"0.0.0.0/0"
],
"name": "this is a test client"
},
{
"_id": "ed7absqep5rffbmqx89c9mwexqvbnfnk",
"_secret": "hdyebsdtvj5ujjkijk7tfrf968q63ysk9",
"_self": "/config/73jzx34tnr5ruhsze494ssgz2b/clients/ed7absqep5rffbmqx89c9mwexqvbnfnk",
"_settings": "/config/73jzx34tnr5ruhsze494ssgz2b/clients/ed7absqep5rffbmqx89c9mwexqvbnfnk/settings",
"features": [
"login_client"
],
"ipWhitelist": [
"0.0.0.0/0"
],
"name": "Default Login Client"
},
{
"_id": "nhjsdtjwvaytevc2w5sx42skggvjn7bu",
"_secret": "99ijf7ree8vcgrdq3qpppo3cddykjhs",
"_self": "/config/73jzx34tnr5ruhsze494ssgz2b/clients/nhjsdtjwvaytevc2w5sx42skggvjn7bu",
"_settings": "/config/73jzx34tnr5ruhsze494ssgz2b/clients/nhjsdtjwvaytevc2w5sx42skggvjn7bu/settings",
"features": [
"login_client"
],
"ipWhitelist": [
"0.0.0.0/0"
],
"name": "This is a client description"
}
]
Error Codes
The following table includes information about some of the error codes that you could encounter when calling this endpoint.
Error Code | Description |
---|---|
401/403 | Error Message: Authentication required. You either failed to provide credentials or provided invalid credentials. This endpoint requires Basic authentication. |
404 | Error Message: Client ID not found. You did not provide a valid client ID. |
If you encounter an error when calling this endpoint, that error message will look similar to this:
{
"errors": "client_id 2mr44db437h9vqddb6ubje7zqwv88n26 not found."
}