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

Query Parameters
Supported Media Types
Request Body - application/json;charset=utf-8 ()
Root Schema : schema
Type: object
Show Source
Nested Schema : ids
Type: array
Show Source
Back to Top

Response

Supported Media Types

202 Response

Request accepted
Body ()
Root Schema : ErrorsBulkResubmitRs
Type: object
Show Source
Nested Schema : accepted-ids
Type: array
List of Accepted Ids
Show Source
Nested Schema : invalid-ids
Type: array
List of Invalid Ids
Show Source
Nested Schema : non-recoverable-ids
Type: array
List of Non Recoverable Ids
Show Source
Nested Schema : resubmitted-failed-instances
Type: array
Show Source
Nested Schema : ResubmittedFailedInstances
Type: object
Show Source

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://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/monitoring/errors/resubmit?integrationInstance=service-instance
Back to Top