Skip to main content

Get total count of admin accounts

GET <your-unleash-url>/api/admin/user-admin/admin-count

Authorization

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

Get a total count of admins with password, without password and admin service accounts

Request

Responses

adminCountSchema

Schema
  • password number required

    Total number of admins that have a password set.

  • noPassword number required

    Total number of admins that do not have a password set. May be SSO, but may also be users that did not set a password yet.

  • service number required

    Total number of service accounts that have the admin root role.

Authorization

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

Request

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