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.

Delete Feed

Modified on July 26, 2024view on GitHub

Delete Feed is available as both a pgutil command and an HTTP Request, and will delete a specified feed.

Command Specification (CLI)

The feed delete command is used to delete a feed.

The --feed option is always required.

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

pgutil feed delete --feed=myNugetFeed

HTTP Request Specification

To delete a specified feed simply DELETE to the URL with the feed name and an appropriate API Key.

DELETE /api/management/feeds/delete/«feed-name»

HTTP Response Specification

Response Details
200 (Success) will delete the specified feed
400 (Invalid Input) indicates invalid or missing properties in the request; the body will provide some details as text
403 (Unauthorized API Key) indicates a missing, unknown, or unauthorized API Key; the body will be empty
404 (Feed Not Found) indicates that the specified feed does not exist