Skip to content

List all release links

GET
/api/v4/projects/{id}/releases/{tag_name}/assets/links

Lists all assets as links from a release.

id
required
One of:
string

The ID or URL-encoded path of the project

tag_name
required
string

The tag associated with the release

page
integer
default: 1 nullable

Current page number

Example
1
per_page
integer
default: 20 nullable

Number of items per page

Example
20

OK

Media type application/json
object
id
integer format: int64
name
string
url
string
direct_asset_url
string
link_type
string
Example
{
"id": 1,
"name": "app-v1.0.dmg",
"url": "https://gitlab.example.com/root/app/-/jobs/688/artifacts/raw/bin/app-v1.0.dmg",
"direct_asset_url": "https://gitlab.example.com/root/app/-/releases/v1.0/downloads/app-v1.0.dmg",
"link_type": "other"
}

Bad Request

Unauthorized

Not found