Cloud
Incidents / Reference / REST API

Responders

Postman Collection
OpenAPI
POST

Remove respondersExperimental

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

Request

Path parameters

issueID

integer

Required

Request bodyapplication/json

responders

array<Responder>

Required

Responses

Returned if the request is successful.

POST/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder/remove
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" } ] }'
GET

Get respondersExperimental

Returns responders to a Jira Service Management Incident. Note that responders can be both user and team responders.

read:incident:jira-service-management

Request

Path parameters

issueID

integer

Required

Responses

Returned if the request is successful.

application/json

RespondersDTO
GET/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder
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'
200Response
1 2 3 4 5 6 7 { "responders": [ { "ari": "ari:cloud:identity::user/99:27935d01-92a7-4687-8272-a9b8d3b2ae2e" } ] }
POST

Add respondersExperimental

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

Request

Path parameters

issueID

integer

Required

Request bodyapplication/json

responders

array<Responder>

Required

Responses

Returned if the request is successful.

POST/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder/add
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: