List a Tag's Values Related to an Issue
GET /api/0/organizations/{organization_slug}/issues/{issue_id}/tags/{key}/values/
Returns details for given tag key related to an issue.
When paginated can return at most 1000 values.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the issue belongs to.
issue_id
(string)REQUIREDThe ID of the issue to retrieve.
key
(string)REQUIREDThe tag key to look the values up for.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:event:read
curl https://sentry.io/api/0/organizations/{organization_slug}/issues/{issue_id}/tags/{key}/values/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"key": "ice_cream",
"value": "mint_choco"
}
]