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.

Get Feed

view on GitHub

Get Feed is available as both a pgutil command and an HTTP Request, and will return properties of a specified feed.

Command Specification (CLI)

The feeds properties list command is used to return properties of a single feed.

The --feed option is always required.

Getting a feed requires the feed name (e.g. myNugetFeed):

pgutil feeds properties list --feed=myNugetFeed

This will return properties of the specified feed:

alternateNames=*not set*
feedType=nuget
active=true
dropPath=*not set*
endpointUrl=https://proget.corp.local/nuget/myNugetFeed/v3/index.json
connectors=nuget.org
canPublish=true
vulnerabilitiesEnabled=true

HTTP Request Specification

To return properties of a specified feed, simply GET to the URL with the name of the feed and an appropriate API Key.

GET /api/management/feeds/get/«feed-name»

HTTP Response Specification

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