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.
Bank getBankList ( ueSecurityToken Token )
Type |
Name |
Description |
Token |
Merchant security token: used to identify merchant and validate transaction. |
Returns array of Bank objects that merchant can accept payments from. |
Dim bank() As eBizCharge.Bank
bank = client.getBankList(token)
MsgBox(bank.Length)
try
{
eBizCharge.Bank[] bank = client.getBankList(token);
MessageBox.Show(string.Concat(bank.Length));
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}