List an Organization's Integration Platform Installations
GET /api/0/organizations/{organization_slug}/sentry-app-installations/
Return a list of integration platform installations for a given organization.
Path Parameters
organization_slug
(string)REQUIREDThe organization short name.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:org:read
org:integrations
curl https://sentry.io/api/0/organizations/{organization_slug}/sentry-app-installations/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"app": {
"uuid": "a9988ad6-meow-4905-bb93-f7cbf4c96bbb",
"slug": "cat-75c19a"
},
"organization": {
"slug": "sentry"
},
"uuid": "01635075-m30w-4f96-8fc8-ff9680780a13",
"status": "installed"
}
]