BankAccounts
ListBankAccounts
Returns a list of BankAccount objects linked to a Square account.
get/v2/bank-accounts
Query parameters
cursorstring
The pagination cursor returned by a previous call to this endpoint. Use it in the next ListBankAccounts request to retrieve the next set of results.
See the Pagination guide for more information.
limitinteger
Upper limit on the number of bank accounts to return in the response. Currently, 1000 is the largest supported limit. You can specify a limit of up to 1000 bank accounts. This is also the default limit.
location_idstring
Location ID. You can specify this optional filter to retrieve only the linked bank accounts belonging to a specific location.
Response
Success
Example response
{
"bank_accounts": [
{
"account_number_suffix": "971",
"account_type": "CHECKING",
"bank_name": "Bank Name",
"country": "US",
"creditable": false,
"currency": "USD",
"debitable": false,
"holder_name": "Jane Doe",
"id": "ao6iaQ9vhDiaQD7n3GB",
"location_id": "S8GWD5example",
"primary_bank_identification_number": "112200303",
"status": "VERIFICATION_IN_PROGRESS",
"version": 5
},
{
"account_number_suffix": "972",
"account_type": "CHECKING",
"bank_name": "Bank Name",
"country": "US",
"creditable": false,
"currency": "USD",
"debitable": false,
"holder_name": "Jane Doe",
"id": "4x7WXuaxrkQkVlka3GB",
"location_id": "S8GWD5example",
"primary_bank_identification_number": "112200303",
"status": "VERIFICATION_IN_PROGRESS",
"version": 5
}
]
}