Download an Incident (Deprecated)

get

/ic/api/integration/v1/monitoring/incident

Downloads the incident with the specified ID. This API has been deprecated since November 2020.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Type: array
Show Source

400 Response

Malformed parameters

404 Response

Incident not found

500 Response

Server error
Back to Top

Examples

The following example shows how to download an incident by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

Example: Download an incident

This command downloads the incident to the specified file incident.zip in the same directory from which the command was run. The incident ID is specified with the -d option.

curl -G -X GET -H 'Authorization: Bearer access_token' -o incident.zip -d "id=htRCBI4heNFHsFHeMP7q" https://integration.us.oraclecloud.com/ic/api/integration/v1/monitoring/incident
Back to Top