List a page of bank accounts where the ID is greater than the optionally supplied fromthisid parameter
List is limited to those bank accounts the logged in user can see. Returned in ID order.
GET
/bankaccount/list/{fromthisid}
curl \
--request GET 'https://YOURSITE.infoodle.com/apiv2/bankaccount/list/4' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 123,
"bank_code": 12,
"branch_code": 3122,
"bank_account_id": "029321-209",
"bank_account_code": "12-309123-1390291123-10232",
"currency_code": "NZD",
"account_type": "checking",
"name": "ASB Donations Account",
"description": "Used to manage all donations",
"xero_account_id": "62f28bd8-3d47-4302-88a3-dc6ff53d8126",
"xero_status": "OK",
"for_group_id": 543
}
]
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}