We use the square app when we are mobile (e.g., farmers market) and I can’t figure out how to split a transaction when a customer wants to pay with some cash and the rest with card. Is this possible and I’m just missing it? Or is it on the development list?
this article should get you going on split payments. we use it all the time.
https://squareup.com/help/us/en/article/5097-process-split-tender-payments-with-square
this article should get you going on split payments. we use it all the time.
https://squareup.com/help/us/en/article/5097-process-split-tender-payments-with-square
Ah! Ok. I was getting thrown off by the split by # of ways on that screen so I never proceeded. I’ll give it a try next time. Thx!
We’ve implemented this feature in several POS and fintech apps. Splitting payment types (cash + card + wallet, etc.) is mostly a business logic and backend design problem, not just a UI one.
How it’s usually handled:
Your backend should maintain:
Not all gateways support split payments natively. If they don’t, you need:
Real-world tip:
On one retail POS project, Nimble AppGenie implemented split payments using a ledger-based model where the checkout flow allowed partial captures and only closed the order once all methods were settled.
This approach scales well for:
Square Community