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
  • 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

  • ]
  • 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

    Possible values: >= 1

    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, root, custom-root]

    The type of the role

  • ]
Loading...