Create an External Issue
POST /api/0/sentry-app-installations/{uuid}/external-issues/
Create an external issue from an integration platform integration.
Path Parameters
uuid
(string)REQUIREDThe uuid of the integration platform integration.
Body Parameters
issueId
(integer)REQUIREDThe ID of the Sentry issue to link the external issue to.
webUrl
(string)REQUIREDThe URL of the external service to link the issue to.
project
(string)REQUIREDThe external service's project.
identifier
(string)REQUIREDA unique identifier of the external issue.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:event:write
curl https://sentry.io/api/0/sentry-app-installations/{uuid}/external-issues/ \ -H 'Authorization: Bearer <auth_token>' \ -H 'Content-Type: application/json' \ -d '{"issueId":1,"webUrl":"https://somerandom.io/project/issue-id","project":"ExternalProj","identifier":"issue-1"}'
RESPONSESCHEMA
{
"id": "1",
"issueId": "1",
"serviceType": "testing",
"displayName": "ExternalProj#issue-1",
"webUrl": "https://somerandom.io/project/issue-id"
}