I was following the API docs https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/refs/tags. but it seems that is not working for Private Enterprise Bitbucket Servers.
What I found that for Enterprise, the API access is formed in the way
{my-private-bibucket-server}//rest/api/latest/projects/{project-id}/repos/{repo-id}/
I was able to fetch tags by using
GET {my-private-bitbucket-server}/rest/api/latest/projects/{project-id}/repos/{repo-id}/tags
However, when I try to do a POST
GET {my-private-bitbucket-server}/rest/api/latest/projects/{project-id}/repos/{repo-id}/tags
with the body
{
"name" : "1.0.0-test-tag",
"target" : {
"hash" : "<some hash value>"
}
}
it doesn't work
Can you please help me how can I do that?