Retrieve Integration Instance Activity Stream Details

get

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

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.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

200 Response

Successful operation

400 Response

Malformed parameters

404 Response

Instance not found

500 Response

Server error
Back to Top

Examples

The following example shows how to retrieve details of 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 Details

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/XkDtR_wnEeypSFfBhM5b3Q/activityStreamDetails?integrationInstance=service-instance

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

Back to Top