Skip to main content
GET
/
v1
/
clients
/
{client}
Get Client
curl --request GET \
  --url https://iam.eu.confidence.dev/v1/clients/{client} \
  --header 'Authorization: Bearer <token>'
{
  "displayName": "<string>",
  "createTime": {},
  "updateTime": {},
  "creator": "<string>",
  "updater": "<string>",
  "name": "<string>",
  "lastSeenTime": {},
  "labels": [
    {}
  ],
  "deleteTime": {},
  "owner": "<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

Response

200 - application/json

OK

A Client allows an app to access certain Confidence services like resolving flags and sending events.

displayName
string
required

Human friendly name of the client.

createTime
object
required

Time when the client was first created.

updateTime
object
required

Time when the client was last updated.

creator
string
required

Reference to the identity that created this client.

updater
string
required

Reference to the identity that last updated this client.

name
string

The resource name of the client. For example: clients/1bhq4c2zqigdzqg6ufni

lastSeenTime
object

The last time this client was used to resolve a flag.

labels
object[]

General set of labels for this resource.

deleteTime
object

Time when the client was deleted.

owner
string

The owner of the resource. If not set will default to the creator.