Reactivate Integrations

post

/ic/api/integration/v1/integrations/reactivate

Reactivates one or more previously deactivated integrations associated with a given connection in Oracle Integration.

Request

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

Response

Supported Media Types

200 Response

reactivateIntegrations 200 response
Body ()
Root Schema : Object
Type: object
Back to Top

Examples

The following example shows how to reactivate one or more integrations 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: Reactivate Integrations associated with connection TEST_CONNECTION

Request:

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

Request Body:

The following example shows the contents of the request body in JSON format. This is the content of the reactivate.json file referenced in the cURL command. The request body contains a list of integration identifiers that have to be reactivated.

[
  "TEST_SCH_INT|01.00.0000",
  "TEST_APP_INT|02.00.0000"
]
Back to Top