Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

List Groups

view on GitHub

List Groups is available as both a pgutil command and an HTTP Request, and will return a list of Groups in ProGet and number of group members in each.

Command Specification (CLI)

The security groups list command is used to list all Groups in ProGet and return the number of group members in each.

Listing all existing Groups requires no additional options:

pgutil security groups list

Example output:

Administrators (members: 2)
Developers (members: 20)
Lead Developers (members: 2)
SREs (members: 13)

HTTP Request Specification

To list all Groups in ProGet, simply GET to the following URL with an appropriate API Key:

GET /api/security/groups/list

HTTP Response Specification

An array of SecurityGroup (see SecurityGroup.cs) objects will be returned on a successful 200 response. A 403 response indicates a missing, unknown, or unauthorized API Key.