Create or Link an External Issue Through a Sentry App
ExperimentalThis API is under active development and may change.
POST /api/0/sentry-app-installations/{uuid}/external-issue-actions/
Invoke the installed app's issue-link callback and store the returned association.
Submit the app-specific form fields alongside groupId, action, and uri.
Path Parameters
uuid(string)REQUIREDThe UUID of the Sentry App installation.
Body Parameters
groupId(string)REQUIREDThe numeric Sentry issue ID.
action(string)REQUIREDThe action to perform:
linkorcreate.uri(string)REQUIREDThe relative callback URI from the app's issue-link form.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:event:adminevent:write
Copied
curl https://sentry.io/api/0/sentry-app-installations/{uuid}/external-issue-actions/ \ -H 'Authorization: Bearer <auth_token>' \ -H 'Content-Type: application/json' \ -d '{}'
RESPONSESCHEMA
Copied.
Was this helpful?