v1

latestOpenAPI 3.1.02026-07-2469193340.0 KB
Bank Accounts

List Float Account entries

Lists the settled ledger entries applied to a Float Account. Transactions and Transfers describe business operations; entries describe what was posted to this Float Account and changed its available balance. An entry may result from a payment, transfer, refund, recovery, return, fee, or manual adjustment, making this endpoint the complete account-level record within the availability window for reconciliation.

Float Account entries are available through this API for a rolling 24-month period, calculated from the time of the request. Entries created before the start of that window are not returned. Requests with either created-at filter before the start of the window return 422 Unprocessable Entity.

Entries are returned in descending order by created_at and then id. The ID is a deterministic tie-breaker; entries with the same timestamp are not guaranteed to be returned in their original balance-application order.

amount is expressed in cents. Positive values credit the Float Account and negative values debit it.

get/bank_accounts/{bank_account_id}/entries

Path parameters

bank_account_idstring uuid required

Bank Account ID (BankAccount.data.id), single value, exact match

Query parameters

min_created_datestring date-time

Filter by minimum created_at. The value must not be earlier than the start of the rolling 24-month availability window. Date/time UTC ISO 8601 format, single value, exact match.

max_created_datestring date-time

Filter by maximum created_at. The value must not be earlier than the start of the rolling 24-month availability window. Date/time UTC ISO 8601 format, single value, exact match.

per_pageinteger

Number of entries to return. Defaults to 20 and is constrained to 1–100.

starting_afterstring uuid

ID of the final entry from the previous page. Return the value from the Link header unchanged.

Response

OK

Example response

{
  "data": [
    {
      "id": "019c8814-c767-753c-82f7-3daac44d8662",
      "created_at": "2026-07-21T01:27:50Z",
      "description": "CT.1uou2c",
      "amount": -1250,
      "available_balance_after": 84750,
      "links": {
        "self": "https://api.sandbox.zeptopayments.com/bank_accounts/ab3de19b-709b-4a41-82a5-3b43b3dc58c9/entries/019c8814-c767-753c-82f7-3daac44d8662"
      }
    }
  ]
}