
Finance::Bank::IE::BankOfIreland - Interface to Bank of Ireland online banking

use Finance::Bank::IE::BankOfIreland;
# config
my $conf = { user => '', pin => '', contact => '', dob => '' };
# get balance from all accounts
my @accounts = Finance::Bank::IE::BankOfIreland->check_balance( $conf );
# get account transaction details
my @details = Finance::Bank::IE::BankOfIreland->account_details( $acct );
# list beneficiaries for an account
my $bene = Finance::Bank::IE::BankOfIreland->list_beneficiaries( $acct );
# transfer money to a beneficiary
my $tx = Finance::Bank::IE::BankOfIreland->funds_transfer( $from, $to, $amt );

Module to interact with BoI's 365 Online service.

Note that all functions are set up to act as methods (i.e. they all need to be invoked using F:B:I:B->method()). All functions also take an optional configuration hash as a final parameter.
Fetch all account balances from the account summary page. Returns an array of Finance::Bank::IE::BankOfIreland::Account objects.
Return transaction details from the specified account
List beneficiaries of C<account>
Transfer C<amount> from C<from> to C<to>, optionally using C<config> as the config data.
Parse the last received page for credentials entry fields, and populate them with the data from C<$config>. Also injects the missing 'form:continue' hidden field.
Scrub the supplied content for PII.