Skip to main content
GET
/
v1
/
clients
/
{client}
/
credentials
List ClientCredential
curl --request GET \
  --url https://iam.eu.confidence.dev/v1/clients/{client}/credentials \
  --header 'Authorization: Bearer <token>'
{
  "clientCredentials": [
    {
      "displayName": "<string>",
      "createTime": {},
      "updateTime": {},
      "creator": "<string>",
      "updater": "<string>",
      "name": "<string>",
      "clientSecret": {},
      "lastSeenTime": {},
      "environments": [
        "<string>"
      ],
      "labels": [
        {}
      ],
      "sdkType": {}
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

client
string
required

Query Parameters

pageSize
object

The maximum number of credentials to fetch.

pageToken
string

Token used for pagination.

Response

200 - application/json

OK

clientCredentials
object[]
required

List of client credentials.

nextPageToken
string

A token that can be used to fetch more client credentials, empty if no more client credentials are available.