We are wanting to build a piece of code to lookup financial institutions based on sort codes received in a file using the API. Currently we are using a dictionary and have to add in any new sort codes to populate the bank name to add to RE, which can be quite cumbersome.
Does anyone have any coding which deals with this or any ideas of the best way forwards please?
Thanks
Gemma
1 Comment
B
Barbara Daenzer
said
almost 2 years ago
I would continue to use a dictionary, but preload it as much as possible using a list (like this one: https://en.wikipedia.org/wiki/Sort_code) to add the sort code (routing number in US)
Gemma Pearce
Hi!
We are wanting to build a piece of code to lookup financial institutions based on sort codes received in a file using the API. Currently we are using a dictionary and have to add in any new sort codes to populate the bank name to add to RE, which can be quite cumbersome.
Does anyone have any coding which deals with this or any ideas of the best way forwards please?
Thanks
Gemma