Retrieve Integration Instance Activity Stream (Deprecated)

get

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

Retrieves activity stream data of an integration instance with specified identifier. The response includes the sequence of actions, invokes and error messages if any, along with their timestamps. It's recommended to not use this API but its alternative /ic/api/integration/v1/monitoring/instances/{id}/activityStreamDetails.

Request

Path Parameters
Query Parameters

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 retrieve an integration instance activity stream by submitting a POST 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: Retrieve Integration Instance Activity Stream

Request:

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/100001/activityStream?integrationInstance=service-instance

This example gets the activity stream for an instance with 100001 instance id.

Back to Top