Retrieve an Errored Integration Instance

get

/ic/api/integration/v1/monitoring/errors/{id}

Retrieves details about the errored integration instance with the specified errored instance identifier.

Request

Path Parameters
Query Parameters
  • 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.
  • Controls the response data. Valid value is minimal. For example, return=minimal. When this value is specified, minimal information of the instance data is added in the response thus making the response time quicker than the default API call. Response does not contain connection details like appTypeDisplayName, appTypeName, and appTypeVersion and in this response, the attributes integration.name and integrationDeleted are set to their default and should not be relied upon. This URL parameter is recommended if performance is preferred instead of the availability of complete instance data.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : ErrorsRs
Type: object
Show Source
Nested Schema : items
Type: array
List of Errors
Show Source
Nested Schema : ErrorRs
Match All
Show Source
Nested Schema : ErrorBaseRs
Match All
Show Source
Nested Schema : TrackingBaseRs
Match All
Show Source
Nested Schema : IdRs
Match All
Show Source
Nested Schema : GenericRestRs
Type: object
Show Source
Nested Schema : IdRs-allOf[1]
Type: object
Show Source
Nested Schema : TrackingBaseRs-allOf[2]
Type: object
Show Source
Nested Schema : ErrorBaseRs-allOf[3]
Type: object
Show Source
Nested Schema : ErrorRs-allOf[4]
Type: object
Show Source
Nested Schema : ConnectionErrorRs
Match All
Show Source
Nested Schema : IntegrationBaseRs
Match All
Show Source
Nested Schema : ConnectionBaseRs
Type: object
Match All
Show Source
Nested Schema : IdResource
Match All
Show Source
Nested Schema : GenericRestResource
Type: object
Show Source
Nested Schema : IdResource-allOf[1]
Type: object
Show Source
Nested Schema : ConnectionErrorRs-allOf[3]
Type: object
Show Source
Nested Schema : IntegrationBaseRs-allOf[2]
Type: object
Show Source

400 Response

Malformed parameters

404 Response

Integration not found

500 Response

Server error
Back to Top

Examples

The following example shows how to retrieve details about a specific error integration instance 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 the details of an error integration instance

curl -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/monitoring/errors/28800004?integrationInstance=service-instance
Back to Top