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 Storage

view on GitHub

Get Feed Storage is available as both a pgutil command and an HTTP Request, and will return properties for the specified feed's storage.

Command Specification (CLI)

The feeds storage info command is used to get storage properties of the specified feed.

The --feed option is always required.

Getting a feed's storage properties requires the feed name (e.g. myNugetFeed):

pgutil feeds storage info --feed=myNugetFeed

Example output:

Type: disk
StoragePath: <default>

HTTP Request Specification

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

GET /api/storage?feed=«feed-name»

HTTP Response Specification

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