Skip to main content

Gets access overview

GET <your-unleash-url>/api/admin/access/overview

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Gets an overview of what access all users have to all projects and groups

Request

Responses

accessOverviewSchema

Schema
  • overview object[]

    A list of user access details

  • Array [
  • userId integer required

    The identifier for the user

  • createdAt date-time nullable

    When the user was created

  • userName string nullable

    The name of the user

  • lastSeen date-time nullable

    The last time the user logged in

  • accessibleProjects string[] required

    A list of project ids that this user has access to

  • groups string[] required

    A list of group names that this user is a member of

  • rootRole string required

    The name of the root role that this user has

  • userEmail string required

    The email address of the user

  • ]

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
Accept
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/access/overview' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'