NuGet - Delete Package Version

Send a package version from the feed to its paired recycle bin.

The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request.

DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/versions/{packageVersion}?api-version=7.1-preview.1

URI Parameters

Name In Required Type Description
feedId
path True

string

Name or ID of the feed.

organization
path True

string

The name of the Azure DevOps organization.

packageName
path True

string

Name of the package to delete.

packageVersion
path True

string

Version of the package to delete.

project
path

string

Project ID or project name

api-version
query True

string

Version of the API to use. This should be set to '7.1-preview.1' to use this version of the api.

Responses

Name Type Description
200 OK

Package

successful operation

Security

oauth2

Type: oauth2
Flow: accessCode
Authorization URL: https://app.vssps.visualstudio.com/oauth2/authorize&response_type=Assertion
Token URL: https://app.vssps.visualstudio.com/oauth2/token?client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer

Scopes

Name Description
vso.packaging_manage Grants the ability to create, read, update, and delete feeds and packages.

Definitions

Name Description
Package

Package version metadata for a NuGet package

PackagingSourceType

Source type, such as Public or Internal.

ReferenceLinks

The class to represent a collection of REST reference links.

UpstreamSourceInfo

Upstream source definition, including its Identity, package type, and other associated information.

Package

Package version metadata for a NuGet package

Name Type Description
_links

ReferenceLinks

Related REST links.

deletedDate

string

If and when the package was deleted.

id

string

Package Id.

listed

boolean

Indicates whether the package is marked as 'listed' within the NuGet protocol. If null or missing, the package's 'listed' state is unspecified.

name

string

The display name of the package.

permanentlyDeletedDate

string

If and when the package was permanently deleted.

sourceChain

UpstreamSourceInfo[]

The history of upstream sources for this package. The first source in the list is the immediate source from which this package was saved.

version

string

The version of the package.

PackagingSourceType

Source type, such as Public or Internal.

Name Type Description
internal

string

Azure DevOps upstream source.

public

string

Publicly available source.

The class to represent a collection of REST reference links.

Name Type Description
links

object

The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only.

UpstreamSourceInfo

Upstream source definition, including its Identity, package type, and other associated information.

Name Type Description
displayLocation

string

Locator for connecting to the upstream source in a user friendly format, that may potentially change over time

id

string

Identity of the upstream source.

location

string

Locator for connecting to the upstream source

name

string

Display name.

sourceType

PackagingSourceType

Source type, such as Public or Internal.