Get User List

JFrog REST APIs

Content Type
REST API
ft:sourceType
Paligo

Description: Returns the list of users.

Since: 7.49.3

Authorization: Requires authentication using Access Tokens, either as admin or using a scoped token with the system:identities:r scope.

Usage: GET /access/api/v2/users

Produces: application/json; charset=UTF-8

Response:

{
  "users": [
    {
      "username": "string",
      "uri": string,
      "realm": string,
      "status": "string"
    }
  ]
  "cursor": "string"
}

Note

The limit parameter allows you to control the number of results. The valid values is a minimum of 1, and the default value is 1,000. For example, to set the limit to 5000, use the following API: /access/api/v2/users?limit=5000

Response Codes:

  • 201: Successful

  • 400: Invalid input, object invalid

  • 401: Invalid credentials

  • 403: Insufficient permissions