Retrieve a custom integration by ID or slug.
GET /api/0/sentry-apps/{sentry_app_id_or_slug}/
Retrieve a custom integration.
Path Parameters
- sentry_app_id_or_slug(string)REQUIRED
- The ID or slug of the custom integration. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- event:admin
- event:read
- event:write
- member:read
- org:read
- project:read
- project:releases
- team:read
Copied
curl https://sentry.io/api/0/sentry-apps/{sentry_app_id_or_slug}/ \ -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" } }
Was this helpful?