Retrieve Integration Activation Errors in a Project

get

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

Retrieves integration activation errors for the specified integration ID within a project.

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 : IntegrationActivationErrorRs
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 integration activation errors 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 errors 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/activationErrors?integrationInstance=service-instance

Response body

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

{  "code": "HELLO_WORLD",  "hasErrors": true,  "errorMessage": "<br> Integration
      HELLO_WORLD(1.2) cannot be activated.<br> XML parsing failed because xpath expression
      \"0.0\" used in &lt;case&gt; is not a boolean expression. <br><br><b>How to
      fix</b><br><br>1. Correct the condition in the XPath expression to evaluate to a Boolean
      value. A Boolean expression cannot contain a float value.<br> 2. Retry the
      activation.<br><br><b>For more help</b><br><ul><li>To track this issue, a unique ID
      \"HELLO_WORLD_01.02.0000_05072022121845\" has been created. Please use this ID for all
      communications with Oracle support.</li><li>For additional suggestions, search the <a
      target=\"_blank\" style=\"cursor:pointer !important\"         href=\"https://oracle.com/resources/704fc67d61/search?find=OIC_ACTIVATION_USER_XPATH_INVALID_BOOLEAN_EXPRESSION\">Oracle Cloud Customer Connect</a> forum for error code
      OIC_ACTIVATION_USER_XPATH_INVALID_BOOLEAN_EXPRESSION.</li><li>For more tips, see  <a
      target=\"_blank\" style=\"cursor:pointer !important\" href=\"https://docs.oracle.com/en/cloud/paas/integration-cloud/integrations-user/troubleshoot-integration-activations.html\">Troubleshoot         Integration Activations</a>.</li></ul>",  "version":
      "01.02.0000",  "shortSummaryMessage": " XML parsing failed because xpath expression
      \"0.0\" used in &lt;case&gt; is not a boolean expression. "}
Back to Top