List a Tag's Values
GET /api/0/projects/{organization_slug}/{project_slug}/tags/{key}/values/
Return a list of values associated with this key. The query
parameter can be used to to perform a "contains" match on
values.
When paginated can return at most 1000 values.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization.
project_slug
(string)REQUIREDThe slug of the project.
key
(string)REQUIREDThe tag key to look up.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:project:read
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/tags/{key}/values/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"name": "mint_choco"
}
]