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.

Create Group

view on GitHub

Create Group is available as both a pgutil command and an HTTP Request, and will create a new Group in ProGet.

Command Specification (CLI)

The security groups create command is used to create a new Group.

The --name option is always required.

Creating a Group requires the Group name (e.g. Developers):

pgutil security groups create --name=Developers

HTTP Request Specification

To create or a Group, simply POST to the following URL with an appropriate API Key and a SecurityGroup object (see SecurityGroup.cs) object as the request body.

POST /api/security/groups/add

HTTP Response Specification

A SecurityGroup object will be returned on a successful 200 response and indicate the Group has been created. A 403 response indicates a missing, unknown, or unauthorized API Key.