Retrieve Integration Activation Status in a Project

get

/ic/api/integration/v1/projects/{projectId}/integrations/{id}/activationStatus

Retrieves progress of integration activation within a project. The responses can be:
  • CONFIGURED: Activation has not yet started.
  • ACTIVATION_INPROGRESS: Activation is still in progress.
  • ACTIVATED: Activation completed successfully.
  • FAILEDACTIVATION: Activation failed.

Request

Path Parameters
  • Integration composite identifier. The ID consists of the code and the version separated by the | (vertical line) character. Format: code%7Cversion. Example: SC2RN%7C01.00.0000. When using cURL, substitute the %7C code for the vertical line.
  • Project identifier
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

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

404 Response

Integration not found

412 Response

Precondition failed

500 Response

Server error
Back to Top

Examples

The following example shows how to get the progress of an integration activation within a project by submitting a GET 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: Get activation status for the integration HELLO_WORLD|01.02.0000 in project TEST_PROJECT

Request

The id is code%7Cversion and the %7C is the encoded | (vertical line).

curl -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/projects/TEST_PROJECT/integrations/HELLO_WORLD%7C01.02.0000/activationStatus?integrationInstance=service-instance

Response body

The following example shows the contents of the response body in JSON format.

{"activationStatus":"CONFIGURED"}
Back to Top