Skip to main content

Get personal project details

GET /api/admin/personal-dashboard/:projectId

Return personal dashboard project events, owners, user roles and onboarding status

Request

Path Parameters

  • projectId string required
Responses

personalDashboardProjectDetailsSchema

Schema
  • insights objectrequired

    Insights for the project, including flag data and project health information.

  • avgHealthCurrentWindow integer nullable required

    The project's average health score over the last 4 weeks

  • avgHealthPastWindow integer nullable required

    The project's average health score over the previous 4-week window

  • totalFlags integer required

    The current number of non-archived flags

  • activeFlags integer required

    The number of active flags that are not stale or potentially stale

  • staleFlags integer required

    The current number of flags that have been manually marked as stale

  • potentiallyStaleFlags integer required

    The number of potentially stale flags as calculated by Unleash

  • health integer required

    The project's current health score

  • onboardingStatus objectrequired

    The current onboarding status of the project.

    oneOf
  • status string required

    Possible values: [onboarding-started, onboarded]

  • latestEvents object[]required

    The latest events for the project.

  • Array [
  • id integer required

    Possible values: >= 1

    The ID of the event.

  • summary string nullable required

    [Experimental] A markdown-formatted summary of the event.

  • createdBy string required

    Which user created this event

  • createdByImageUrl string required

    URL used for the user profile image of the event author

  • createdAt date-time required

    When the event was recorded

  • ]
  • owners objectrequired

    The users and/or groups that have the "owner" role in this project. If no such users or groups exist, the list will contain the "system" owner instead.

    oneOf
  • Array [
  • anyOf
  • ownerType string required

    Possible values: [user]

  • name string required
  • imageUrl string nullable
  • email string nullable
  • ]
  • roles object[]required

    The list of roles that the user has in this project.

  • Array [
  • name string required

    The name of the role

  • id integer required

    The id of the role

  • type string required

    Possible values: [custom, project]

    The type of the role

  • ]
Loading...