Description: Download a complete tarball (tar.gz/zip) of a tag.
Downloading can be executed conditionally according to properties by specifying the properties query param. In this case only cached artifacts are searched.
Since: 3.6.0
Security: Requires a privileged user (can be anonymous)
Usage: GET /artifactory/api/vcs/downloadTag/{repoKey}/{userOrg}/{repo}/{tag-name}?ext=tar.gz/zip (default tar.gz)
This API can also be called using the userOrg as the repository, like this:
GET /artifactory/api/vcs/downloadTag/{repoKey}/{userOrg}/{tag-name}?ext=tar.gz/zip (default tar.gz)Produces: application/octet-stream
Sample Output:
GET /artifactory/api/vcs/downloadTag/github/jquery/jquery/2.0.1 <Tag binary content>
Sample Output when using userOrg as the repository:
GET /artifactory/api/vcs/downloadTag/gs-repo/crossbench/loadline_v1.0.0 <Tag binary content>
In the example above, userOrg = crossbench and the tag name is loadline_v1.0.0.