v7

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

Get personal dashboard

Return all projects and flags that are relevant to the user.

get/api/admin/personal-dashboard

Response

personalDashboardSchema

Example response

{
  "admins": [
    {
      "id": 1,
      "name": "Ash Ketchum",
      "username": "pokémaster13",
      "imageUrl": "https://example.com/peek-at-you.jpg",
      "email": "user@example.com"
    }
  ],
  "projectOwners": [
    {
      "name": "User Name",
      "imageUrl": "https://example.com/image.jpg",
      "email": "user@example.com"
    }
  ],
  "projects": [
    {
      "id": "my-project-id",
      "name": "My Project",
      "health": 50,
      "technicalDebt": 25,
      "memberCount": 4,
      "featureCount": 10
    }
  ],
  "flags": [
    {
      "name": "my-flag",
      "project": "my-project-id",
      "type": "release"
    }
  ]
}