Discard Errored Integration Instances

post

/ic/api/integration/v1/monitoring/errors/discard

Discards errored integration instances with the specified integration instance identifiers.

Request

Supported Media Types
Body ()

Information about the instances to discard or abort.

Examples:

{flowCode: 'MON_ERRORS_INT_AUTO', flowVersion: '01.00.0000', timewindow: '1h'}
ids: ['4', '3', '2', '1']
{connectionCode: 'RIGHTNOW', startDate: '2020-07-21 00:00:00', endDate: '2020-07-27 12:55:00'}
Root Schema : errorsactionrequest
Type: object
Show Source
Nested Schema : ids
Type: array
Show Source
Back to Top

Response

Supported Media Types

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 multiple error integration instances 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 instances 19, 20, 21

curl -X POST -H 'Authorization: Bearer access_token' -H "Content-Type:application/json" -d '{"ids" : [19,20,21]}' https://integration.us.oraclecloud.com/ic/api/integration/v1/monitoring/errors/discard
Back to Top