• Affected Services
  • Linked alerts
  • Request status
  • Chat tools
  • Incident bulk actions
  • Incident
  • Major Incident
  • Post-incident review
  • Responders
  • Stakeholders
Cloud
Incidents / Reference / REST API

Incident bulk actions

Postman Collection
OpenAPI

This resource represents bulk actions to a Jira Service Management Incident

POST

Add linked alerts

Adds linked alerts to multiple Jira Service Management Incidents. See What are linked alerts? for details.

read:incident:jira-service-management
,
write:incident:jira-service-management

Request

Request bodyapplication/json

issueIds

array<string>

Required
alertIds

array<string>

Required

Responses

Alerts linking request will be enqueued and performed asynchronously

application/json

LinkAlertsToIncidentsDTO
POST/jsm/incidents/cloudId/{cloudId}/v1/incident/bulk/link-alerts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 curl --request POST \ --url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/bulk/link-alerts' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "issueIds": [ "10005", "10006" ], "alertIds": [ "8dd24912-a0ad-41cd-ac80-535eaf649ed7" ] }'
202Response
1 2 3 4 5 6 7 8 9 { "issueIds": [ "10005", "10006" ], "alertIds": [ "8dd24912-a0ad-41cd-ac80-535eaf649ed7" ] }

Rate this page: