v2

latestOpenAPI 3.0.12026-07-262352981007.0 KB
Bank Accounts

Get bank accounts

Returns a list of bank accounts.

get/bankaccounts

Query parameters

typestring
matterIdstring

Response

When request is successful. Returns a collection of 'BankAccount' objects.

idstring nullable
hrefstring nullable
relationstring nullable
methodstring nullable

Example response

{
  "value": [
    {
      "id": "b471682e-fa17-4e46-b7fe-9b2b8fdcb3c2",
      "type": "Trust",
      "accountName": "John Smith",
      "accountNumber": "10436489",
      "bankName": "Commonwealth Bank",
      "branchNumber": "062201",
      "branchName": "Sydney",
      "balance": 1000,
      "contactBalances": [
        {
          "balance": 1000,
          "protectedBalance": 1000,
          "availableBalance": 1000
        }
      ],
      "matterBalances": [
        {
          "balance": 1000,
          "protectedBalance": 1000,
          "availableBalance": 1000
        }
      ]
    }
  ]
}