Resubmit an Errored Integration Instance

post

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

Resubmits the errored integration instance with the specified identifier. Additionally, to change the trace level of the resubmission, use the "recoveryTraceLevel" attribute in the request body. For example, "recoveryTraceLevel" : "Audit".

Request

Path Parameters
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 : ErrorResubmitRs
Type: object
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 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: Resubmit 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/resubmit?integrationInstance=service-instance
Back to Top