NAME

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

VERSION

This documentation refers to version 0.13

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;
 

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:

  • timeout => HTTP timeout in seconds

Returns the timeout just set.

login

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

  • cust_id - Your HDFC customer ID

  • password - Your netbanking password (IPIN)

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.in>

COPYRIGHT AND LICENSE

Copyright (C) 2008 by Rohan Almeida <rohan@almeida.in>

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