I currently have an app that allows users to manage their customers. That said, I want my app's users to be able to take payment from their own customers, and have the funds deposit to their own bank accounts. Does anyone know if Stripe, Paypal, or Square has an SDK that would allow users to login to their own payment accounts to take payment? Any help and/or tips are super appreciated!
Asked
Active
Viewed 91 times
1 Answers
3
For PayPal, use a regular Checkout integration (Web JS SDK, Native SDK, and/or server-side REST API integration, as desired) and when creating the order specify a payee
object with an email_address or merchant_id that is to receive the payment

Preston PHX
- 27,642
- 4
- 24
- 44
-
Amazing, I'll give this a try this afternoon and report back! Thanks so much for the info :) – Brittany Apr 03 '22 at 18:33