Get current logged in user's information
GEThttps://edge-host-ip:5080/v1/users/current
Get current logged in user's information
Responses
- 200
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
disablePasswordUpdateboolean
Default value: false
Flag to indicate if the user is allowed to update the password
sshKeysstring[]
Current user's ssh keys
userNamestring
Current user's username
{
"disablePasswordUpdate": false,
"sshKeys": [
"string"
],
"userName": "string"
}
Server Error
- application/json
- Schema
Schema
any
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X GET 'https://edge-host-ip:5080/v1/users/current' \
-H 'Accept: application/json'