Retrieve Integration Activation Errors in a Project
/ic/api/integration/v1/projects/{projectId}/integrations/{id}/activationErrors
Request
- 
                    id(required):  string
                    
                    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.
 - 
                    projectId(required):  string
                    
                    Project identifier
 
- 
                            integrationInstance(required): string
                            
                            This is the name of the service instance. You can get this value from the About page where it is specified in the Service instance field.
 
There's no request body for this operation.
Back to TopResponse
- application/json; charset=utf-8
 
200 Response
object- 
                
                    
                    code: string
                    
                    
                     
                    
                
                
                Integration Code
 - 
                
                    
                    errorMessage: string
                    
                    
                     
                    
                
                
                Integration Activation Error Message
 - 
                
                    
                    hasErrors: boolean
                    
                    
                     
                    
                
                
                Flag to Check if Error Exists
 - 
                
                    
                    shortSummaryMessage: string
                    
                    
                     
                    
                
                
                Short Summary Message
 - 
                
                    
                    version: string
                    
                    
                     
                    
                
                
                Integration Version
 
404 Response
412 Response
500 Response
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 <case> 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 <case> is not a boolean expression. "}