List a Tag's Values Related to an Issue

Returns details for given tag key related to an issue.

Path Parameters

issue_id (string)
REQUIRED
The ID of the issue to retrieve.
key (string)
REQUIRED
The tag key to look the values up for.

Scopes

<auth_token> requires the following scopes:
  • event:read
GET /api/0/issues/{issue_id}/tags/{key}/values/
curl https://sentry.io/api/0/issues/{issue_id}/tags/{key}/values/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "key": "ice_cream",
    "value": "mint_choco"
  }
]