Skip to content
English

Get information about currently logged in user

GET
/profile
curl --request GET \
--url https://example.com/api/v1/profile \
--cookie grommunioAuthJwt=<grommunioAuthJwt>

Profile data returned

Media typeapplication/json
object
user
object
username
string
realName
string
capabilities

List of capabilities the current user has

Array<string>
Examplegenerated
{
"user": {
"username": "example",
"realName": "example"
},
"capabilities": [
"example"
]
}