Discard an Errored Integration Instance

post

/ic/api/integration/v1/monitoring/errors/{id}/discard

Discard the errored integration instance with the specified errored instance identifier.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

202 Response

Request accepted

400 Response

Malformed parameters

401 Response

Unauthorized

403 Response

Forbidden

412 Response

Precondition failed

500 Response

Server error
Back to Top

Examples

The following example shows how to discard an error integration instance by submitting a POST 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: Discard the error instance with id 19

curl -X POST -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/monitoring/errors/19/discard?integrationInstance=service-instance
Back to Top