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

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.

Related

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

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.

How to use Opencart Product Profile?

anyone know how to apply Opencart 1.5.6 new feature product profile? which is located in the admin menu - catalog - profile ?
I heard it can be used to break payment into several part, but i don't understand how it really works. Can i use it to let my buyer pay in 50% first then after my product is ready to ship, they pay the rest 50% again with that feature?
Thank You very much.
follow the documentation and dont forget to enable payment gateway like paypal express
http://docs.opencart.com/display/opencart/Profiles

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.

django/commerce/paypal: keeping track of user transactions

currently I wish to integrate paypal payment into my application, so I downloaded django-paypal (dcramer) to test it out with the paypal sandbox. I tried the WPP express checkout payment as my primary payment flow, and have no problems with payment process, worked smoothly.
However like all e-commerce, I am aware that I should keep track of user transactions/payments in my application. This is where I am lost. I've checked the model table paypal_nvp in django-paypal, and there's no field that resembles a transaction-id with Paypal.
If so, how should I keep track of users' payments? Can I use the datetime + user as hash for my transaction id? How can I reference a particular transaction to a paypal transaction?
Anyone who used django-paypal or have experience with e-commerce in django please feel free to offer valuable suggestions.
In your database you should have a "paypal_ipn" table with the detailed transactions. You can use that table or you can create your own model for your transactions and link them together. There you will find the transaction-id under the name "txn_id". If you want to fire up a script when a transaction occurs you can use the #receiver(payment_was_successful) signal from djano-paypal. Hope this helps.

setup payment for django satchmo

this is a newbie satchmo question...so I've implemented satchmo for a django e-shop I am building. I have setup sathcmo following the tutorials, created some products, tested that I can make an order, and then switched to 'real mode', on http://site/settings, clicking on 'accept real payments'. The question is how I can setup the payments to be made on my bank account (a bank in Greece)?
I have not found any reference on this, so please help!
btw, on the checkout page, I get this
You'll need to fill out at least the fields with a *
How do you want to pay?
Payment method*
Payment test module
Gift Certificate
so what does payment test module means? Do I have to install another application? Currently setting.py contains
'payment',
'payment.modules.dummy',
'payment.modules.giftcertificate',
Thanks a lot for any help!
Satchmo has multiple payment methods. I am not sure exactly what payment methods would support interacting with your Greek bank account. Typically people use something like Authorize.net, paypal or google to collect payments.
Once you decide which processor you want to use, then we can help you decide if there's a processor available or if you'll need to build one.