Skip to main content
POST
cURL

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

repo_name
string
required

Repository name

Body

application/json

Request body for creating a tag within a repository: POST /api/v1/repositories/{repo_name}/tags

commit_id
string<uuid>
required

The commit ID this tag should point to

tag_name
string
required

The tag name (e.g. "latest", "v1.0")

description
string | null

Optional description of what this tag represents

Response

Tag created

Response body for POST /api/v1/repositories/{repo_name}/tags

commit_id
string<uuid>
required

The commit ID this tag points to

reference
string
required

Full reference in image_name:tag format

tag_id
string<uuid>
required

The ID of the newly created tag