Retrieve the custom integrations created by an organization

GET /api/0/organizations/{organization_id_or_slug}/sentry-apps/

Retrieve the custom integrations for an organization

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

Scopes

<auth_token> requires one of the following scopes:
  • org:admin
  • org:read
  • org:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/sentry-apps/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied
[ { "allowedOrigins": [], "author": "ACME Corp", "avatars": [ { "avatarType": "avatar", "avatarUuid": "6c25b771-a576-4c18-a1c3-ab059c1d42ba", "avatarUrl": "https://example.com/avatar.png", "color": false, "photoType": "icon" } ], "events": [ "issue" ], "isAlertable": false, "metadata": "", "name": "ACME Corp Integration", "overview": null, "popularity": 27, "redirectUrl": null, "featureData": [], "schema": "", "scopes": [ "event:read", "org:read" ], "slug": "acme-corp-integration", "status": "unpublished", "uuid": "77cebea3-019e-484d-8673-6c3969698827", "verifyInstall": true, "webhookUrl": "https://example.com/webhook", "clientId": "ed06141686bb60102d878c607eff449fa9907fa7a8cb70f0d337a8fb0b6566c3", "clientSecret": "**********", "owner": { "id": 42, "slug": "acme-corp" } }, { "allowedOrigins": [], "author": "ACME Corp", "avatars": [], "events": [ "issue", "event" ], "isAlertable": false, "metadata": "", "name": "ACME Corp Integration v2", "overview": null, "popularity": 0, "redirectUrl": "example.com", "featureData": [], "schema": "", "scopes": [ "event:admin", "org:admin" ], "slug": "acme-corp-integration-v2", "status": "unpublished", "uuid": "77cebea3-019e-484d-8673-123124234", "verifyInstall": true, "webhookUrl": "https://example.com/webhook", "clientId": "2730a92919437a7b052e6827cd2c9f119be37101asdasdad123131231231231", "clientSecret": "**********", "owner": { "id": 42, "slug": "acme-corp" } } ]
Was this helpful?