---
updatedAt: 2026-06-25T22:44:00.000Z
---

Fetch the complete documentation index at: https://developers.pismo.io/pismo-docs/llms.txt. Use this file to discover all available pages before exploring further.

# List schedule executions

List account schedule executions.


# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Core platform - Payment scheduler",
    "version": "1.0.0",
    "description": "Endpoints to enable scheduler creation and processing.",
    "contact": {
      "name": "API Support",
      "url": "https://developers.pismo.io/"
    },
    "license": {
      "name": "Copyright Pismo"
    }
  },
  "servers": [
    {
      "url": "https://sandbox.pismolabs.io/scheduler-payments",
      "description": "Sandbox API server for testing"
    }
  ],
  "tags": [
    {
      "name": "Schedules",
      "description": "Endpoints to enable scheduler creation and processing"
    }
  ],
  "components": {
    "responses": {
      "400BadRequest": {
        "description": "Bad request"
      },
      "403Forbidden": {
        "description": "Operation forbidden"
      },
      "404NotFound": {
        "description": "The specified resource was not found"
      },
      "500InternalServer": {
        "description": "Internal server error"
      }
    },
    "parameters": {
      "accountId": {
        "in": "path",
        "name": "accountId",
        "schema": {
          "type": "integer",
          "format": "int64"
        },
        "description": "Pismo account ID",
        "required": true
      },
      "scheduleId": {
        "in": "path",
        "name": "scheduleId",
        "schema": {
          "type": "string"
        },
        "description": "Schedule ID",
        "required": true
      }
    },
    "schemas": {
      "AccountID": {
        "description": "Account ID",
        "type": "integer",
        "format": "int64",
        "example": 8675309
      },
      "Authorization": {
        "type": "object",
        "description": "Authorization",
        "properties": {
          "account_id": {
            "$ref": "#/components/schemas/AccountID"
          },
          "tracking_id": {
            "$ref": "#/components/schemas/TrackingID"
          },
          "payment_date": {
            "$ref": "#/components/schemas/PaymentDatetime"
          },
          "status": {
            "$ref": "#/components/schemas/StatusAuthorization"
          },
          "response_code": {
            "$ref": "#/components/schemas/ResponseCode"
          },
          "denial_code": {
            "$ref": "#/components/schemas/DenialCode"
          }
        }
      },
      "Count": {
        "type": "integer",
        "example": 1,
        "description": "Number of items"
      },
      "DenialCode": {
        "type": "string",
        "description": "Authorization denial code",
        "example": "DAL"
      },
      "Execution": {
        "type": "object",
        "description": "Execution object",
        "properties": {
          "execution_id": {
            "$ref": "#/components/schemas/ExecutionID"
          },
          "account_id": {
            "$ref": "#/components/schemas/AccountID"
          },
          "schedule_id": {
            "$ref": "#/components/schemas/ScheduleID"
          },
          "execution_status": {
            "$ref": "#/components/schemas/ExecutionStatus"
          },
          "authorizations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Authorization"
            }
          }
        }
      },
      "ExecutionID": {
        "type": "string",
        "description": "Execution ID",
        "example": "eec3df75-629d-43dc-8eb7-e3b186188341"
      },
      "ExecutionStatus": {
        "type": "string",
        "description": "Status of execution.",
        "enum": [
          "EXECUTED",
          "EXECUTED_WITH_RESTRICTIONS",
          "EXECUTED_WITH_ERROR_NEXT_DAY_NOT_ALLOWED",
          "EXECUTED_WITHOUT_SCRAPING",
          "EXECUTED_WITH_ERROR_BANK_SLIP"
        ],
        "example": "EXECUTED_WITH_RESTRICTIONS"
      },
      "GetScheduleExecutionsResponse": {
        "type": "object",
        "description": "Response of getting existing executions of the schedule",
        "properties": {
          "has_next": {
            "$ref": "#/components/schemas/HasNext"
          },
          "next_cursor": {
            "$ref": "#/components/schemas/NextCursor"
          },
          "count": {
            "$ref": "#/components/schemas/Count"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Execution"
            }
          }
        }
      },
      "HasNext": {
        "type": "boolean",
        "example": true,
        "description": "Is there a next page?"
      },
      "NextCursor": {
        "type": "string",
        "description": "Cursor value to apply in a subsequent query to continue pagination",
        "example": "c737895c-8159-4c0c-a92a-a4f8600bff37"
      },
      "PaymentDatetime": {
        "type": "string",
        "format": "date-time",
        "description": "Effective payment date in the UTC-0 RFC3339 format. Format: YYYY-MM-DDTHH:mm:ss.sssZ.\nPayments can be backdated, but future dates are not allowed.\n",
        "example": "2023-01-02T07:35:05.125Z"
      },
      "ResponseCode": {
        "type": "string",
        "description": "Alphanumeric two-character standard card network response code or an alternative custom response code, which provides the precise reason for the success or denial of the operation by the card network, platform, or anti-fraud solution.",
        "example": "00"
      },
      "ScheduleID": {
        "type": "string",
        "description": "Schedule ID (idempotency field for this operation)",
        "minLength": 36,
        "maxLength": 50,
        "example": "eec3df75-629d-43dc-8eb7-e3b186188341"
      },
      "StatusAuthorization": {
        "type": "string",
        "description": "Authorization status",
        "enum": [
          "APPROVED",
          "REJECTED"
        ],
        "example": "REJECTED"
      },
      "TrackingID": {
        "type": "string",
        "description": "Unique tracking ID for this operation",
        "minLength": 36,
        "maxLength": 50,
        "example": "249fbd1c-cfcd-48aa-8bcb-1ffe3a5f7978"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "Account access token. Tokens can expire quickly, which can result in an \"Unauthorized\" error.",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "paths": {
    "/v1/accounts/{accountId}/schedules/{scheduleId}/executions": {
      "parameters": [
        {
          "$ref": "#/components/parameters/accountId"
        },
        {
          "$ref": "#/components/parameters/scheduleId"
        }
      ],
      "get": {
        "summary": "List schedule executions",
        "description": "List account schedule executions.\n",
        "operationId": "get-schedule-executions",
        "tags": [
          "Schedules"
        ],
        "responses": {
          "200": {
            "description": "Request was processed successfully, existing executions with the corresponding schedule ID returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetScheduleExecutionsResponse"
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/400BadRequest"
          },
          "403": {
            "$ref": "#/components/responses/403Forbidden"
          },
          "404": {
            "$ref": "#/components/responses/404NotFound"
          },
          "500": {
            "$ref": "#/components/responses/500InternalServer"
          }
        }
      }
    }
  }
}
```