v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Users

Get your own user profile

Detailed information about the current user root role and project membership

get/api/admin/user/profile

Response

profileSchema

projectsstring[] required

Which projects this user is a member of

subscriptionsstring[] required

Which email subscriptions this user is subscribed to

canChangePasswordboolean required

Whether the current user has a local password that can be changed.

Example response

{
  "rootRole": {
    "id": 9,
    "type": "root",
    "name": "Editor",
    "description": "Users with the editor role have access to most features in Unleash but can not manage users and roles in the global scope. Editors will be added as project owners when creating projects and get superuser rights within the context of these projects. Users with the editor role will also get access to most permissions on the default project by default.",
    "project": "default"
  },
  "projects": [
    "my-projectA",
    "my-projectB"
  ],
  "groups": [],
  "subscriptions": [
    "productivity-report"
  ],
  "features": [],
  "canChangePassword": true
}