Query parameters
-
with_profile_uid boolean
Determines whether to retrieve the user profile UID, if it exists, for the users.
GET
/_security/user
curl \
--request GET http://api.example.com/_security/user
Response examples (200)
{
"additionalProperty1": {
"email": "string",
"full_name": "string",
"metadata": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"roles": [
"string"
],
"username": "string",
"enabled": true,
"profile_uid": "string"
},
"additionalProperty2": {
"email": "string",
"full_name": "string",
"metadata": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"roles": [
"string"
],
"username": "string",
"enabled": true,
"profile_uid": "string"
}
}