v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Schedules

List account schedules

List account schedules with paging and filter options.

get/v1/accounts/{accountId}/schedules

Response

Request was processed successfully.

has_nextboolean

Whether there are more pages after the current page (true) or not (false).

next_cursorstring nullable

Cursor value for the next page

countinteger

Number of items

Example response

{
  "has_next": true,
  "next_cursor": "MEgCQQCo9+BpMRYQ/dL3DS2CyJxRF+j6ctbT3/Qp84+KeFhnii7NT7fELilKUSnxS30WAvQCCo2yU1orfgqr41mM70MBAgMBAAE=",
  "count": 1,
  "items": [
    {
      "schedule_id": "eec3df75-629d-43dc-8eb7-e3b186188341",
      "schedule_kind": "SINGLE",
      "description": "Challenge expired",
      "schedule_details": {
        "type": "authentication",
        "day_type": "CALENDAR_DAY",
        "start_date": "2023-01-02T07:00:00.000Z",
        "end_date": "2023-03-30T12:26:41",
        "retries": {
          "interval_recurrence": 5,
          "number_of_attempts": 5
        },
        "statement": {
          "id": 1234455
        }
      },
      "account_id": 6912345,
      "status": "PENDING",
      "created_at": "2024-09-12T16:46:16.43663522",
      "metadata": "{ \"key\": \"value\"}",
      "pismo_metadata": {
        "any-key": "any-value"
      },
      "processing_code": "99066",
      "processing_codes": {
        "credit": "219803",
        "debit": "219803"
      },
      "amount": 215,
      "currency_code": "840",
      "restrictions": {
        "minimum_daily_available": 100.23,
        "minimum_monthly_average_available": 100.23,
        "minimum_days_account_inactivity": 5
      },
      "strategy": "SWEEP",
      "transfers": [
        {
          "description": "Transfer to savings account",
          "amount": 215,
          "metadata": "{ \"key\": \"value\"}",
          "to": {
            "account_id": 6912345,
            "processing_code": "99066"
          },
          "from": {
            "account_id": 6912345,
            "processing_code": "99066"
          }
        }
      ]
    }
  ]
}