Abort an Integration Instance

post

/ic/api/integration/v1/monitoring/instances/{id}/abort

Abort a waiting or paused scheduled integration instance or any in-progress asynchronous integration instance with the specified identifier.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : InstanceAbortRs
Type: object
Show Source

400 Response

Malformed parameters

404 Response

Instance not found

409 Response

Instance not in-progress status

500 Response

Server error
Back to Top

Examples

The following example shows how to abort a 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: Abort an Integration Instance

Request:

curl -X POST -H 'Authorization: Bearer access_token' -H "Content-Type:application/json"  https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/monitoring/instances/hpTwuRitEe2sHXnqDAJVyQ/abort?integrationInstance=service-instance

Request Body:

The following example shows the contents of the request body in JSON format. This is the content of the runIntegration.json file listed in the cURL command.

Request Body:
{}
Back to Top