# List tags Endpoint: GET /code/api/v1/repos/{repo_identifier}/tags Version: 1.0 Security: x-api-key ## Query parameters: - `accountIdentifier` (string, required) Account Identifier for the Entity. - `orgIdentifier` (string) Organization Identifier for the Entity. - `projectIdentifier` (string) Project Identifier for the Entity. - `include_commit` (boolean) Indicates whether optional commit information should be included in the response. - `query` (string) The substring by which the tags are filtered. - `order` (string) The order of the output. Enum: "asc", "desc" - `sort` (string) The data by which the tags are sorted. Enum: "name", "date" - `page` (integer) The page to return. - `limit` (integer) The maximum number of results to return. ## Path parameters: - `repo_identifier` (string, required) ## Response 200 fields (application/json): - `commit` (object) - `commit.author` (object) - `commit.author.identity` (object) - `commit.author.identity.email` (string) - `commit.author.identity.name` (string) - `commit.author.when` (string) - `commit.committer` (object) - `commit.message` (string) - `commit.parent_shas` (array) - `commit.sha` (string) Git object hash - `commit.signature` (object,null) - `commit.signature.created` (integer) - `commit.signature.key_fingerprint` (string) - `commit.signature.key_id` (string) - `commit.signature.key_scheme` (string) Enum: "pgp", "ssh" - `commit.signature.result` (string) Enum: "bad", "good", "invalid", "key_expired", "revoked", "unsupported", "unverified" - `commit.signature.updated` (integer) - `commit.stats` (object) - `commit.stats.files` (array) - `commit.stats.files.changes` (integer) - `commit.stats.files.deletions` (integer) - `commit.stats.files.insertions` (integer) - `commit.stats.files.old_path` (string) - `commit.stats.files.path` (string) - `commit.stats.files.status` (string) - `commit.stats.total` (object) - `commit.title` (string) - `is_annotated` (boolean) - `tagger` (object) ## Response 401 fields (application/json): - `message` (string) - `values` (object) ## Response 403 fields (application/json): - `message` (string) - `values` (object) ## Response 404 fields (application/json): - `message` (string) - `values` (object) ## Response 500 fields (application/json): - `message` (string) - `values` (object)