Skip to main content
GET
/
v1
/
users
/
{user}
Get User
curl --request GET \
  --url https://iam.eu.confidence.dev/v1/users/{user} \
  --header 'Authorization: Bearer <token>'
{
  "fullName": "<string>",
  "email": "<string>",
  "createTime": {},
  "updateTime": {},
  "identity": "<string>",
  "name": "<string>",
  "givenName": "<string>",
  "familyName": "<string>",
  "externalId": "<string>",
  "scimExternalId": "<string>",
  "username": "<string>",
  "pictureUri": "<string>",
  "lastLoginTime": {},
  "blocked": true,
  "slackUserInfo": {},
  "labels": [
    {}
  ],
  "deleteTime": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

user
string
required

Response

200 - application/json

OK

A Confidence user.

fullName
string
required

Full name of the user like John Doe.

email
string
required

E-mail of the user.

createTime
object
required

Time when the user was first created.

updateTime
object
required

Time when the user was last updated.

identity
string
required

Reference to the identity this user represents.

name
string

Name of the user on the form users/{"<"}id{">"}.

givenName
string

Given name of the user like John.

familyName
string

Family name of the user like Doe.

externalId
string

External identifier of the user

scimExternalId
string

External identifier of the user if set over scim

username
string

Username of the user

pictureUri
string

Profile picture URI if exists, otherwise empty.

lastLoginTime
object

Time of last login.

blocked
boolean

Indicator of whether the user is blocked from logging in.

slackUserInfo
object

The slack user info for the user if any.

labels
object[]

General labels for this resource.

deleteTime
object

Time when the user was deleted.