Skip to main content
GET
/
v1
/
apiClients
List ApiClient
curl --request GET \
  --url https://iam.eu.confidence.dev/v1/apiClients \
  --header 'Authorization: Bearer <token>'
{
  "apiClients": [
    {
      "displayName": "<string>",
      "clientId": "<string>",
      "createTime": {},
      "updateTime": {},
      "creator": "<string>",
      "updater": "<string>",
      "identity": "<string>",
      "name": "<string>",
      "description": "<string>",
      "clientSecret": "<string>",
      "labels": [
        {}
      ],
      "owner": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

pageSize
object

The maximum number of API clients to fetch.

pageToken
string

Token used for pagination.

filter
string

Filter for API clients, follows the lucene query string format. Example: 'displayName: "my-api-client"'.

orderBy
string

Provide fields and direction to sort by. Will always tiebreak on name. Format: {"<"}field_0{">"}:{"<"}direction{">"}, {"<"}field_1{">"}:{"<"}direction{">"} Example: displayName:desc,createTime:asc

Response

200 - application/json

OK

apiClients
object[]

Partial list of returned API clients.

nextPageToken
string

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