Maven - Get Package Version

Get information about a package version.

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.

GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/versions/{version}?api-version=7.1-preview.1
GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/versions/{version}?showDeleted={showDeleted}&api-version=7.1-preview.1

URI Parameters

Name In Required Type Description
artifactId
path True

string

Artifact ID of the package.

feed
path True

string

Name or ID of the feed.

groupId
path True

string

Group ID of the package.

organization
path True

string

The name of the Azure DevOps organization.

version
path True

string

Version of the package.

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.

showDeleted
query

boolean

True to show information for deleted packages.

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 Grants the ability to read feeds and packages. Also grants the ability to search packages.

Definitions

Name Description
Package

Package version metadata for a Maven 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 Maven package

Name Type Description
_links

ReferenceLinks

Related REST links.

deletedDate

string

If and when the package was deleted.

id

string

Package Id.

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.