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)REQUIRED
- The uuid of the integration platform integration. 
Body Parameters
- issueId(integer)REQUIRED
- The ID of the Sentry issue to link the external issue to. 
- webUrl(string)REQUIRED
- The URL of the external service to link the issue to. 
- project(string)REQUIRED
- The external service's project. 
- identifier(string)REQUIRED
- A 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"
}