Retrieve the list of banks that the merchant can accept direct payments from.
This method pulls the list of banks that the merchant can accept direct payments from. It is only available to merchants setup to process Secure Vault Payments.
| Type | Name | Description |
| ueSecurityToken | Token | Merchant security token: used to identify merchant and validate transaction. |
| Bank | Returns array of Bank objects that merchant can accept payments from. |
Dim bank() As usaepay.Bank
bank = client.getBankList(token)
MsgBox(bank.Length)
try
{
usaepay.Bank[] bank = client.getBankList(token);
MessageBox.Show(string.Concat(bank.Length));
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
| Version | Change |
| 1.2 | Method added in 1.2 release |