This resource represents Responders to a Jira Service Management Incident. Use this resource to add, remove and fetch responders to an Incident. See Incident responders for details.
Removes responders to a Jira Service Management Incident. Note that responders can be both user and team responders.
read:incident:jira-service-management
write:incident:jira-service-management
integer
Requiredarray<Responder>
RequiredReturned if the request is successful.
1
2
3
4
5
6
7
8
9
10
11
curl --request POST \
--url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder/remove' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"responders": [
{
"ari": "ari:cloud:identity::user/99:27935d01-92a7-4687-8272-a9b8d3b2ae2e"
}
]
}'
Returns responders to a Jira Service Management Incident. Note that responders can be both user and team responders.
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}/responder' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
{
"responders": [
{
"ari": "ari:cloud:identity::user/99:27935d01-92a7-4687-8272-a9b8d3b2ae2e"
}
]
}
Adds responders to a Jira Service Management Incident. Note that responders can be both user and team responders.
read:incident:jira-service-management
write:incident:jira-service-management
integer
Requiredarray<Responder>
RequiredReturned if the request is successful.
1
2
3
4
5
6
7
8
9
10
11
curl --request POST \
--url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder/add' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"responders": [
{
"ari": "ari:cloud:identity::user/99:27935d01-92a7-4687-8272-a9b8d3b2ae2e"
}
]
}'
Rate this page: