Questions tagged [bank]

169 questions
180
votes
3 answers

Is there an API to get bank transaction and bank balance?

I'm using CHASE bank. (Also Bank of America) and I want to get my bank transactions and my balance if I can. Is there an API for that? in PHP or JAVA? If so, please let me know how to get them.
Expert wanna be
  • 10,218
  • 26
  • 105
  • 158
37
votes
6 answers

Detecting a US Holiday

What's the simplest way to determine if a date is a U.S. bank holiday in Python? There seem to be various calendars and webservices listing holidays for various countries, but I haven't found anything specific to banks in the U.S.
Cerin
  • 60,957
  • 96
  • 316
  • 522
16
votes
7 answers

Why Banks or Financial Companies prefer Oracle than other RDBMS for their "Core" systems?

I'd like to know why most Banks or Financial companies prefer Oracle than other RDBMS for their core systems (the absolutely minimum features that a Bank must support). I found a few answers that didn't satisfy me. For example: Oracle has more…
edwin.nathaniel
  • 1,002
  • 1
  • 10
  • 16
14
votes
8 answers

Regex for BIC check

I wrote a regex for php function pregmatch which is like this: ^([a-zA-Z]){4}([a-zA-Z]){2}([0-9a-zA-Z]){2}([0-9a-zA-Z]{3})?$^ Now I need to check the consistency of an BIC string. Something is wrong with it... it is always correct. And I have no…
Sangoku
  • 1,588
  • 2
  • 21
  • 50
14
votes
1 answer

India Banking API to Process NEFT Payments

Is there a way to send payments from the bank account to all your customers automatically in India ? Suppose: Every customer has a unique id and all this bank details like name, account number and NEFT code are stored in his profile. Is there a way…
riffmaster
  • 141
  • 1
  • 4
10
votes
4 answers

If float and double are not accurate, how do banks perform accurate calculations involving money?

Currently learning C++ and this has just occurred to me. I'm just curious about this as I'm about do develop a simple bank program. I'll be using double for calculating dollars/interest rate etc., but there are some tiny differences between…
user680269
8
votes
3 answers

I don't understand how Westpac Payway API and NET works

Been googling all day, reading numerous PDF's and still getting confused with the concepts of sending data to Payway system from Westpac (a bank in Australia). They offer access via API but also give access via what they call "NET." The way I…
spirytus
  • 10,726
  • 14
  • 61
  • 75
8
votes
2 answers

How can I electronically transfer money to another account using Bank Transfer (BACS)

I'm working on a project where we collect payments from users using credit/debit/PayPal payments. The service is taking payments from users on behalf of a 3rd party organisation. Once we take the payment, minus fees, we want to transfer the amount…
Mooktakim Ahmed
  • 1,021
  • 1
  • 10
  • 17
8
votes
1 answer

How to programatically transfer money from a bank account via SEPA

I am looking to transfer money via SEPA from one bank account to another - from an application. The app needs to transfer funds in the name of the person whose bank account the funds are being transferred from - i.e. some third party gateway won't…
James
  • 30,496
  • 19
  • 86
  • 113
8
votes
6 answers

How to pay your non-Western users?

I have a question similar to this one, only that my question is focused on "non-Western" users (with this I refer to users outside of Western Europe and the US). I have to pay users of my website (for services rendered for instance), and they are…
user1305445
8
votes
2 answers

UK bank sort code javascript regular expression

I'm trying to create a regular expression in javascript for a UK bank sort code so that the user can input 6 digits, or 6 digits with a hyphen between pairs. For example "123456" or "12-34-56". Also not all of the digits can be 0. So far I've got…
NickL
  • 1,870
  • 2
  • 15
  • 35
7
votes
1 answer

Hash X509 certificate with SHA 256 in c#

I work on an EBICS implementation in C# and I need to send to my bank the hash of my three certificates in SHA256 format in order to enable EBICS link with it. I generated them in C# with BouncyCastle and now I have a X509Certificate2 object. So…
Thomas Rollet
  • 1,573
  • 4
  • 19
  • 33
6
votes
0 answers

How to generate UPI address from Bank account and ifsc code

I want to made payment via upi app using bank details with android upi deep linking.. I tried below format accountNumber@ifsccode.ifsc.npci this actually opening app and also going till payment screen but payment is not happening ERROR: Payment…
6
votes
1 answer

How can I make DictReader open a file with a semicolon as the field delimiter?

My csv file has the semicolon as delimiter. I can open it with r = csv.reader(infile, delimiter=";") without any issues. The problem is that I want to open the file as a dict. The csv.DictReader class doesn't have the delimiter option. My…
holgerm
  • 67
  • 1
  • 5
6
votes
4 answers

MPGS Integration

I am trying to use new migs getaway (MPGS) I followed the code in the next url https://ap-gateway.mastercard.com/api/documentation/integrationGuidelines/hostedCheckout/integrationModelHostedCheckout.html Sure I am replaced all required fields…
osama saeed
  • 81
  • 1
  • 3
1
2 3
11 12