Directly send money from my Stripe account to my customers bank accounts - django

I'm looking for functionality to make direct payments to my Stripe Customers bank accounts without Stripe Connect.
Is it actually possible to do?
Do I have to use any other payment providers for that?
I spent a lot of hours to find correct way of doing such kind of payment flow, but all of them requires Stripe Connect for customer which is unacceptable in my situation.

At the end of this issue was decided to use Wise (TransferWise). Because Stripe does not provide required functionality.

Related

I want to split funds using PayPal Django using django-paypal

I want to pay to the seller for his sold products How can I do this using in django please help. I'm looking into paypal payouts but is there any SDK? or anything that can help me?
If you receive a full payment into your own account, you can later send money from that account in an automated way using Payouts. To be approved for Payouts, see the information at https://developer.paypal.com/docs/payouts/integrate/prerequisites/#get-access-to-paypal-payouts
You can use the Payouts-Python-SDK for your implementation.

How to make a credit card validation prior to a authorization

I am using Authorize.net as a payment gateway. Now I want to check credit card validity before creating authorize payment. I am using another service to store and manage the customer's profiles and credit cards, and therefore I don't want to create a customer profile in Authorize.net, I just want to use their service to validate a credit card and later to authorize a payment.
Is there any proper way to do this validation?
Searching the documentation and other similar questions, all I could find was the option to create a customer profile, but this option doesn't seem practical to me, since it's necessary to create a customer profile, and after delete it each time I need to validate a credit card.
Does anyone had a similar problem with Authorize.net payment gateway?

google developer transfer app with subscriptions

we have developed an app for customer. This app contains subscriptions and we tested them in real world. Then we stop tests and refund all money back. Now, we are unable to transfer app because of active subscriptions (Google told us - after transfer initiaded - that it's not possible, we do not know this... unfortunately). Read so many stories about fact, that this is not possible to change anything if some subscriptions was paid. But Google test payment system didn't work how we expected, so we need to test it in real way... now we are stuck in circle.
Because we have only one app under our account, we agreed with customer to give him logon & other infos in order to get app for him. Unfortunately, we are unable to change country for merchant account. Is it possible to solve this? Or we do need to make new package under customer developer account and then unpublish current app and create a new one with same name?
If unpublish/publish is only way, how can we do this in order to do not hurt any current customer? App is not paid for now. but customer want to start app in new country and want to activate payment system. Unfortunately we are eu residents, and customer seat in Singapore... so we are unable to put his bank account either.
Do we have any options? Or, can we contact Google e.g. by phone? I try to call to Google in CA and have no success.. no live operator, only phone robots there..

How to pay my customers with Django PayPal Payment Pro

I want to pay my customers with Paypal Payment Pro , I mean send some money from my Merchant account to a Personnal account . At the momment i just can ask the client to give his credit card infromations ane send the money to my Merchant account but I want the reverse.
PS : I use Django WPP https://github.com/johnboxall/django-paypal
Use Mass Payments. I was looking at this site to figure out how to use it with django. It worked like a charm. Your customers need to have paypal accounts though, but I don't think that's an issue if you're paying them.
That's not how the PayPal Payment Pro API works. It allows you to accept money, not to send money. You want to use Mass Payments or the Adaptive Payments API.

How would I securely handle paid memberships?

I'm building a simple Django application for a client which will allow for users to register paid accounts to gain access certain parts of the site; however, I've never handled payment processing beyond a few simple Paypal buttons.
My question is, how would I securely handle and verify payments in this situation?
You might be able to use some of the payment code from Satchmo:
http://www.satchmoproject.com/docs/dev/payment.html