Retrieve Future Runs for a Schedule

get

/ic/api/integration/v1/monitoring/futureruns

Retrieves the future runs for a scheduled integration.

Request

Query Parameters
  • Filter parameters.

    • startdate: Custom time range start date/time in UTC format for filtering instances.
    • enddate: Custom time range end date/time in UTC format for filtering instances.
    • code: Integration identifier.
    • version: Integration version.
    • projectCode: Project identifier

  • Valid values - true, false (default). If true, will return each future run. Else, will aggregate the count of future runs on a daily basis.
  • Timezone identifier.

    Examples:

    America/New_York, Asia/Calcutta, Europe/London

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : FutureRunsForIntegrationListRs
Match All
Show Source
Nested Schema : GenericRestRs
Type: object
Show Source
Nested Schema : FutureRunsForIntegrationListRs-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : FutureRunsForIntegrationTO
Type: object
Show Source
Nested Schema : future-runs
Type: array
Show Source
Nested Schema : FutureRunTO
Type: object
Show Source

400 Response

Malformed parameters

500 Response

Server error
Back to Top

Examples

The following example shows how to retrieve the future runs in a schduled integration 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: Retrieve all the future runs in a scheduled integration

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/futureruns?q={startdate%3A%20%272025-07-01%2018%3A30%3A00%27%2C%20enddate%3A%20%272025-07-07%2018%3A29%3A59%27%2C%20code%3A%20%27SCHEDULE_TEST%27%2C%20version%3A%20%2701.00.0000%27}&returnAll=true&timezone=Asia%2FCalcutta&integrationInstance=service-instance

Example: Retrieve all the future runs in a scheduled integration and aggregated daily

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/futureruns?q={startdate%3A%20%272025-07-01%2018%3A30%3A00%27%2C%20enddate%3A%20%272025-07-07%2018%3A29%3A59%27%2C%20code%3A%20%27SCHEDULE_TEST%27%2C%20version%3A%20%2701.00.0000%27}&timezone=Asia%2FCalcutta&integrationInstance=service-instance
Back to Top