Cloud
Incidents / Reference / REST API

Rate this page:

Responders

Postman Collection
OpenAPI
GET

Get respondersExperimental

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

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 curl --request GET \ --url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder' \ --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.

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 curl --request POST \ --url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder/add' \ --header 'Content-Type: application/json' \ --data '{ "responders": [ { "ari": "ari:cloud:identity::user/99:27935d01-92a7-4687-8272-a9b8d3b2ae2e" } ] }'
POST

Remove respondersExperimental

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

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 curl --request POST \ --url 'https://api.atlassian.com/jsm/incidents/cloudId/{cloudId}/v1/incident/{issueID}/responder/remove' \ --header 'Content-Type: application/json' \ --data '{ "responders": [ { "ari": "ari:cloud:identity::user/99:27935d01-92a7-4687-8272-a9b8d3b2ae2e" } ] }'