Just a suggestion to make, not sure if this piratical or even worth considering for the much later Pipeline.
This is an idea come about from living close to people in this category, who I feel have really struggled to get in a good position when it comes to money/banking.
Take for example, gambling addiction, currently all the support they go through advises them to close all bank accounts, open a building society cash account, to help avoid the temptations / access to money.
The idea to try and be the first bank to help people in these groups would be to offer a service to block transactions to known gambling merchants (bank cards can often block them via visa verification if its an under 18 card) so not sure if the logic would be there to allow an opt in function to not allow any transaction online, or in store merchants listed under a certain category?
If this is completely daft, not the direction you think youâd want to look at, then please ignore. Just thinking for how to be THE bank that can help everyone, and even those other banks really donât have the time to help.
I donât have any experience with gambling addiction, so this might be a silly question. But wouldnât the loophole in your suggestion above be that someone would just withdraw cash and walk into a casino or bookies? Would this need to be accompanied by a limit on daily withdrawals, too?
To extrapolate on the idea even further; context sensitive blocking would be a godsend. Probably not remotely practical or worth putting development time into, but the following scenario would save me lots of money:
if account_balance =< ÂŁ50 :
can_buy_lunch = False
elif account_balance =< ÂŁ10 :
can_buy_apps = False
else:
print("Are you sure you NEED to buy that?")
The daily withdrawal limit is a small drop compared to the amounts Iâve seen them deposit in one session online or via card top up at the branch counter of the venues.
The ultimate responsibility is on the addict to self exclude or try to stop but only having ÂŁ250 cash would better than a whole monthâs salary in an hour (for worst scenario example)
I really like this idea! It would be great if they let you host your own âserverâ via the API, where you could write you own budget script, and set all your plans! With motivation messages!
A webhook for card payments would be nice - your server gets the raw data sent by the merchantâs terminal and you can decide whether to approve the transaction (up to the amount of funds available in your Monzo account).
I think this would be a good idea. I know people who this could help. Not sure if itâs something easy to implement though. And people are right about cash, but better ÂŁ250 gone than everything in the account I guess!
Of course this should be a advanced user feature - I donât expect many people will use it, but it will be cool to have (if not only for the marketing to demonstrate the power of the API). Support can have a status field that tells whether the transaction was rejected by the web hook (in which case itâs the userâs problem) or if the rejection was on Monzoâs side.
This is actually a very good idea.
Just moving toward the current account, if I have DD for my electric bill and my salary hasnât come in, Iâd like the DD to go out of overdraft and Iâd like to be able to use the tube to get home, but beyond that I donât want to go further into overdraft so Iâd like the rest of my transactions to be declined.
This is something Iâve given a lot of thought to before, although what I discussed at the time was more of a simple rule builder: Rule Builder
I donât think youâd want a whole new language, youâd probably want to be able to add JS/Node rules in Monzo (or maybe Go, since thatâs what the backend is written in) with a simple API.
Essentially Monzo would build a rule builder UI which would write this script under the hood and thereâd be an advanced view for scripting itself.
@zancler may have an update for you on that! Weâre still very keen to develop these ideas into something tangible, but work on the current account has dominated the last few months!
There is a lot of debate around how âinvolvedâ a bank should be in their customersâ personal spending habits and choices. Monzo is all about giving full control and visibility to customer and if we want to do this successfully we need to acknowledge a responsibility to support those who are facing financial difficulties as a result of an addiction or mental health condition. Whilst itâs not our place to say where our customer should or shouldnât be spending their money, opt in features like this could be a great way to add another layer of control without things feeling too intrusive or pushy from our side.
Iâm not sure itâs a good idea to have people writing in âactualâ languages - particulaly if they are the ones the backend is written in! Youâre just opening a whole can of worms in regard to sandboxing and injection attacks.
It would be much simpler (and safer) to have a âMonzo Languageâ that was essentially a very basic programming language with Monzo-specific commands. It isnât really necassary to have a fully fledged language. Then, you have an interpreter which will carry out those actions but not âexecuteâ the code you have written persay. You can then control the attack vector with much greater precision and you have a lot more control over that users can/canât do. Think of it like programming for dummies type language.
Well they could outsource the problem to Amazon Lambda or something similar. Twilio did that for their Functions feature and itâs essentially the same thing we want to be doing, except instead of reacting to phone calls weâll be reacting to payments.