This resource represents bulk actions to a Jira Service Management Incident
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
array<string>
Requiredarray<string>
RequiredAlerts linking request will be enqueued and performed asynchronously
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"
]
}'
1
2
3
4
5
6
7
8
9
{
"issueIds": [
"10005",
"10006"
],
"alertIds": [
"8dd24912-a0ad-41cd-ac80-535eaf649ed7"
]
}
Rate this page: