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 Feed

view on GitHub

Create Feed is available as both a pgutil command and an HTTP Request, and will create a new feed of the specified package type.

Command Specification (CLI)

The feeds create command is used to create a feed.

The --name and --type options are always required.

Creating a feed requires the feed name (e.g. MyNugetFeed) and type (e.g. NuGet):

pgutil feeds create --name=myNugetFeed --type=NuGet

HTTP Request Specification

To create a feed, simply POST to the URL with an appropriate API Key and a ProgetFeed (see ProGetFeed.cs) object as the request body.

POST/PUT /api/management/feeds/create

HTTP Response Specification

A ProGetFeed object will be returned on a successful 200 response. A 403 response indicates a missing, unknown, or unauthorized API Key.