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)
REQUIRED

The UUID of the Sentry App installation.

Body Parameters

groupId (string)
REQUIRED

The numeric Sentry issue ID.

action (string)
REQUIRED

The action to perform: link or create.

uri (string)
REQUIRED

The relative callback URI from the app's issue-link form.

Scopes

<auth_token> requires one of the following scopes:
  • event:admin
  • event: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?