//native
/**
* List a tags 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.
*/
export async function main(auth: RT.Sentry, project_id_or_slug: string, key: string) {
const url = new URL(
`https://${auth.region}.sentry.io/api/0/projects/${auth.organizationSlug}/${project_id_or_slug}/tags/${key}/values/`
)
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Bearer ' + auth.token
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 330 days ago