Get a tokenized ACH/EFT/bank account
Get tokenized ACH data by token.
Example
Call the ChargeOver.ACH.get($token)
method to get tokenized ACH information.
var token = 'n8dx061hwjvb';
function my_callback_function(code, message, response)
{
alert('ACH account number: ' + response.ach.mask_number);
}
ChargeOver.ACH.get(token, my_callback_function);