Resubmit Errored Integration Instances

post

/ic/api/integration/v1/monitoring/errors/resubmit

Resubmit multiple errored instances based on a list of given integration instance identifiers.

Request

Supported Media Types
Body ()

Criteria for which instances to resubmit.

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 resubmit 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: Resubmit 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/resubmit
Back to Top