Skip to main content

Get personal dashboard

GET /api/admin/personal-dashboard

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

Request

Responses

personalDashboardSchema

Schema
  • admins object[]required

    Users with the admin role in Unleash.

  • Array [
  • id integer required

    The user ID.

  • name string

    The user's name.

  • username string

    The user's username.

  • imageUrl string
  • email string
  • ]
  • projectOwners object[]required

    Users with the project owner role in Unleash. Only contains owners of projects that are visible to the user.

  • Array [
  • ownerType string required

    Possible values: [user]

    The type of the owner; will always be user.

  • name string required

    The name displayed for the user. Can be the user's name, username, or email, depending on what they have provided.

  • imageUrl string nullable

    The URL of the user's profile image.

  • email string nullable

    The user's email address.

  • ]
  • projects object[]required

    A list of projects that a user participates in with any role e.g. member or owner or any custom role

  • Array [
  • id string required

    The id of the project

  • name string required

    The name of the project

  • health number required

    An indicator of the project's health on a scale from 0 to 100

  • memberCount number required

    The number of members this project has

  • featureCount number required

    The number of features this project has

  • ]
  • flags object[]required

    A list of flags a user created or favorited

  • Array [
  • name string required

    The name of the flag

  • project string required

    The id of the feature project

  • type string required

    The type of the feature flag

  • ]
Loading...