Retrieve custom integration issue links for the given Sentry issue
GET /api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/external-issues/
Retrieve custom integration issue links for the given Sentry issue
Path Parameters
organization_id_or_slug
(string)REQUIREDThe ID or slug of the organization the resource belongs to.
issue_id
(integer)REQUIREDThe ID of the issue you'd like to query.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:event:admin
event:read
event:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/external-issues/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied[ { "id": "123456", "issueId": "1234567890", "serviceType": "example-app", "displayName": "example-issue#2", "webUrl": "https://example.com/my-test-project/issue/example-issue-2/this-is-an-example-python-exception" } ]
Was this helpful?