Get all tags of the repository.
Get all tags of the repository.
Path Parameters
- owner required
The owner of the code repository is generally referred to as the "username". The name is not case sensitive.
- repo required
Code repository name. The name is not case sensitive.
Query Parameters
- per_page
per_page
- page
page
- search
tag name retrieval, suppor fuzzy queries
Header Parameters
- Authorization required
Oauth2 token or Privatetoken(start with Bearer and a space)
Responses
- 200
- 404
- responseBody
Success
resouce not found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- name string
tag name
commit object required
commit id
sha stringcommit SHA value
- ]
[
{
"name": "string",
"commit": {
"sha": "string"
}
}
]
Loading...