Retrieve Future Runs for a Schedule
/ic/api/integration/v1/monitoring/futureruns
Request
-
q: string
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
-
returnAll: boolean
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: string
Timezone identifier.
Examples:
America/New_York, Asia/Calcutta, Europe/London
There's no request body for this operation.
Back to TopResponse
- application/json;charset=utf-8
200 Response
400 Response
500 Response
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