Skip to content

Get User Self

GET
/v1/users/self
curl --request GET \
--url https://example.com/api/v1/users/self \
--header 'Authorization: <Authorization>'

OK

Media type application/json
object
item
item
object
defaultGroupId
string
email
string
groupIds
Array<string>
id
string
isOwner
boolean
isSuperuser
boolean
name
string
oidcIssuer
string
oidcSubject
string
Example generated
{
"item": {
"defaultGroupId": "example",
"email": "example",
"groupIds": [
"example"
],
"id": "example",
"isOwner": true,
"isSuperuser": true,
"name": "example",
"oidcIssuer": "example",
"oidcSubject": "example"
}
}