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.

Universal Feed Metadata

view on GitHub

Universal Feed Metadata is an endpoint in ProGet's Universal Feed API that will return a FeedMetadata JSON object that describes the feed.

Request Specification

To query the properties of a feed, simply GET to the URL with a feed name.

GET /upack/«feed-name»/meta

Querying a Universal Feed requires the feed (e.g. myUniversalFeed).

GET /upack/myUniversalFeed/meta

Response Specification

A successful (200) response body will contain a single FeedMetadata JSON object. For example, to querying a feed with the name myUniversalFeed, the request would return:

GET /upack/myUniversalFeed/meta

{
  "apiVersion": "1.3.0",
  "name": "myUniversalFeed",
  "description": "A Universal Feed",
  "packageCount": 4,
  "packageVersionCount": 5,
  "services": [
    "VirtualPackages",
    "RemotePackages",
    "UploadPackage",
    "UploadContents",
    "Delete",
    "DownloadContents"
  ]
}
Response Details
200 (Success) will return a single FeedMetadata JSON object
400 (Version < 1.3.0) indicates the feed version is less than 1.3.0.
403 (Unauthorized API Key) indicates a missing, unknown, or unauthorized API Key
404 (Feed Not Found) indicates the specified feed does not exist