Operations
Get a Incident by ID
Retrieve the currently stored Incident data for the given ID.
The result will be what is currently stored, ignoring any pending updates or deletes.
Only Connect apps that define the jiraOperationsInfoProvider module can access this resource. This resource requires the 'READ' scope for Connect apps.
get/rest/operations/1.0/incidents/{incidentId}
Path parameters
incidentIdstring required
The ID of the Incident to fetch.
Response
The Incident data currently stored for the given ID.
Example response
{
"schemaVersion": "1.0",
"id": "111-222-333",
"updateSequenceNumber": 1523494301448,
"affectedComponents": [
"111-222-333",
"444-555-666"
],
"summary": "Unable to log into VPN",
"url": "https://example.com/project/ITHELPDESK-9/summary",
"createdDate": "2018-01-20T23:27:25.000Z",
"lastUpdated": "2018-01-20T23:27:25.000Z",
"severity": {
"level": "P1"
},
"status": "open",
"associations": [
{
"associationType": "issueIdOrKeys",
"values": [
"ITSM-123"
]
}
]
}