v54

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-01235140905.8 KB
Accounting

Retrieves all bank transfers

get/BankTransfers

Query parameters

wherestring

Filter by an any element

orderstring

Order by an any element

includeDeletedboolean

e.g. includeDeleted=true - Bank transfers with a status of DELETED will be included in the response

Headers

If-Modified-Sincestring date-time

Only records created or modified since this timestamp will be returned

Response

Success - return response of BankTransfers array of 0 to N BankTransfer

Example response

{
  "BankTransfers": [
    {
      "FromBankAccount": {
        "Name": "Food Sales",
        "AccountID": "00000000-0000-0000-0000-000000000000",
        "UpdatedDateUTC": "/Date(1573755038314)/"
      },
      "ToBankAccount": {
        "Name": "Food Sales",
        "AccountID": "00000000-0000-0000-0000-000000000000",
        "UpdatedDateUTC": "/Date(1573755038314)/"
      },
      "CreatedDateUTC": "/Date(1573755038314)/"
    }
  ]
}