This resource represents Major Incidents in Jira Service Management. Use this resource to escalate / de-escalator a Jira Service Management Incident as a major incident. See What are major incidents? for details.
Returns the major incident status of a Jira Service Management Incident.
License required: Premium or Enterprise
read:incident:jira-service-management
integer
RequiredReturned if the request is successful.
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/major' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
{
"majorIncident": true
}
"Updates the major incident status of a Jira Service Management Incident.
License required: Premium or Enterprise
read:incident:jira-service-management
write:incident:jira-service-management
integer
Requiredboolean
RequiredReturned if the request is successful.
1
2
3
4
5
6
7
curl --request POST \
--url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/major' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"majorIncident": true
}'
Rate this page: