List a Tag's Values
GET /api/0/projects/{organization_id_or_slug}/{project_id_or_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_id_or_slug(string)REQUIRED
- The ID or slug of the organization. 
- project_id_or_slug(string)REQUIRED
- The ID or slug of the project. 
- key(string)REQUIRED
- The 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_id_or_slug}/{project_id_or_slug}/tags/{key}/values/ \
 -H 'Authorization: Bearer <auth_token>'RESPONSESCHEMA
[
  {
    "name": "mint_choco"
  }
]