Retrieve an Integration Instance

get

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

Retrieves detailed information about the integration instance with the specified instance ID.

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. In this response, the attributes integrationName and projectFound 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 : InstanceRs
Type: object
Show Source
Nested Schema : activity-stream
Type: array
Activity Streams
Show Source
Nested Schema : audit-trail
Type: array
Audit Trails
Show Source
Nested Schema : trackings
Type: array
List of Trackings Data
Show Source
Nested Schema : TrackingDataRs
Type: object
Show Source

400 Response

Malformed parameters

404 Response

Instance not found

500 Response

Server error
Back to Top

Examples

The following example shows how to get details for an 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 details about the integration instance with instance id 500400209

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