Overview
List Schedule Executions
Returns paginated execution history for a schedule. Use this to monitor runtime outcomes and execution performance over time.
Endpoint
GET
https://snapshot-api.mindiqglobal.com/api/v1/schedules/{scheduleId}/executionsQuery Parameters
| Name | Required | Type | Default | Description |
|---|---|---|---|---|
| page | No | integer | 0 | Zero-based page index. |
| size | No | integer | 20 | Number of records per page. |
| sort | No | string | createdAt,desc | Sorting format: field,direction. |
Path Parameters
| Name | Required | Type | Description |
|---|---|---|---|
| scheduleId | Yes | integer | Schedule ID. |
Success Response
{
"content": [
{
"id": 3001,
"status": "COMPLETED",
"totalItems": 4,
"successfulItems": 4,
"failedItems": 0,
"startedAt": "2026-08-06T09:00:00Z",
"completedAt": "2026-08-06T09:01:10Z",
"processingTimeMs": 70123,
"createdAt": "2026-08-06T09:00:00Z"
}
],
"page": 0,
"size": 20,
"totalElements": 1,
"totalPages": 1
}Response Body Parameters
| Name | Type | Description |
|---|---|---|
| content | array | Schedule execution records. |
| content[].id | integer | Execution ID. |
| content[].status | enum | Execution status. Possible values: PROCESSING, COMPLETED, FAILED. |
| content[].totalItems | integer | Total attempted items. |
| content[].successfulItems | integer | Number of successful items. |
| content[].failedItems | integer | Number of failed items. |
| content[].startedAt | datetime | Execution start datetime in ISO-8601 format. |
| content[].completedAt | datetime | null | Execution completion datetime in ISO-8601 format. |
| content[].processingTimeMs | integer | Execution processing time in milliseconds. |
| content[].createdAt | datetime | Execution creation datetime in ISO-8601 format. |
| page | integer | Current page index. |
| size | integer | Page size. |
| totalElements | integer | Total number of records. |
| totalPages | integer | Total number of pages. |