The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Business::IBAN::NL::BIC - Lookup Dutch BIC and bank names from IBAN numbers.

DESCRIPTION

For Dutch IBAN numbers the bank code is contained within the account number. The bank code can be used to determine the BIC and the name of the bank at which the account is located.

The information contained in this module is taken from https://www.betaalvereniging.nl/giraal-en-online-betalen/sepa-documentatie-voor-nederland/bic-afleiden-uit-iban/ and contains correct information as of the date of the upload of this module. Last changes on that page were made on 4th of March 2016.

LIMITATIONS

This module works only for valid Dutch IBAN numbers. It does not check IBAN numbers for correctness, please take a look at Business::IBAN::Validator for that.

METHODS

This module provides an object oriented interface but all methods can also be called as regular functions (specify full package name in those cases, function names are not exported).

new

Constructor; does not take any arguments.

bic($iban)

Return the BIC code for a specific Dutch IBAN. If the IBAN is not Dutch or the bank code contained in the IBAN is not recognized this method returns undef.

name($iban)

Return the name of the bank controlling the specified Dutch IBAN account. If the IBAN is not Dutch or the bank code contained in the IBAN is not recognized this method returns undef.

LICENSE

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