Retrieve Integration Activation Errors
get
                    /ic/api/integration/v1/integrations/{id}/activationErrors
Retrieves integration activation errors for the integration with the specified ID.
                
                Request
Path Parameters
                - 
                    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.
Query Parameters
                    - 
                            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
Supported Media Types
                - application/json; charset=utf-8
200 Response
Successful operation
                            
                            
                                Root Schema : IntegrationActivationErrorRs
    
    	Type: 
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        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
Integration not found
                            
                            
                            
                            
                        412 Response
Precondition failed
                            
                            
                            
                            
                        500 Response
Server error
                            
                            
                            
                            
                        Examples
The following examples show how to get integration activation errors 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
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/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://cloudcustomerconnect.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. "}