Finance::Bank::HDFC - Interface to the HDFC netbanking service


NAME

Finance::Bank::HDFC - Interface to the HDFC netbanking service


VERSION

This documentation refers to version 0.12


SYNOPSIS

  use Finance::Bank::HDFC;
  my $bank = Finance::Bank::HDFC->new;
  $bank->login({
    cust_id   => xxx,
    password  => xxx,
  });
  print $bank->get_balance . "\n";
  $bank->logout;
   
  =head1 DESCRIPTION
  

This module provides an interface to the HDFC netbanking service at https://netbanking.hdfcbank.com/netbanking/


METHODS

new

Constructor for this class. Currently requires no arguments.

set_timeout

Sets the HTTP timeout. Parameters:

Returns the timeout just set.

login

Login to the netbanking service. Requires hashref of named parameters.

Dies on error.

get_balance

Returns account balance. Dies on error.

logout

Logout from the netbanking service. Remember to always call this method at the end of your program or you may face difficulties logging in the next time.

Dies on error.


REQUIRES

LWP::UserAgent, Crypt::SSLeay, version, Readonly


WARNING

This warning is from Simon Cozens' Finance::Bank::LloydsTSB, and seems just as apt here.

This is code for online banking, and that means your money, and that means BE CAREFUL. You are encouraged, nay, expected, to audit the source of this module yourself to reassure yourself that I am not doing anything untoward with your banking data. This software is useful to me, but is provided under NO GUARANTEE, explicit or implied.


AUTHOR

Rohan Almeida <rohan.almeida@gmail.com>


COPYRIGHT AND LICENSE

Copyright (C) 2005 by Rohan Almeida <rohan.almeida@gmail.com>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.