API Reference

Overview

List Schedule Executions

Returns paginated execution history for a schedule. Use this to monitor runtime outcomes and execution performance over time.

Endpoint

GEThttps://snapshot-api.mindiqglobal.com/api/v1/schedules/{scheduleId}/executions

Query Parameters

NameRequiredTypeDefaultDescription
pageNointeger0Zero-based page index.
sizeNointeger20Number of records per page.
sortNostringcreatedAt,descSorting format: field,direction.

Path Parameters

NameRequiredTypeDescription
scheduleIdYesintegerSchedule 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

NameTypeDescription
contentarraySchedule execution records.
content[].idintegerExecution ID.
content[].statusenumExecution status. Possible values: PROCESSING, COMPLETED, FAILED.
content[].totalItemsintegerTotal attempted items.
content[].successfulItemsintegerNumber of successful items.
content[].failedItemsintegerNumber of failed items.
content[].startedAtdatetimeExecution start datetime in ISO-8601 format.
content[].completedAtdatetime | nullExecution completion datetime in ISO-8601 format.
content[].processingTimeMsintegerExecution processing time in milliseconds.
content[].createdAtdatetimeExecution creation datetime in ISO-8601 format.
pageintegerCurrent page index.
sizeintegerPage size.
totalElementsintegerTotal number of records.
totalPagesintegerTotal number of pages.