I want to give money using PayPal

I am working on an application where, after some process, the user will receive a loan, which he can later receive. I want the user to cash out this money using paid ones, but I donโ€™t know where to start. Has anyone done similar with this before. Provide ways to withdraw money using a paid or any other payment gateway.

+4
source share
3 answers

Paypal has a simple API for payments as a merchant. See the Following URL: https://developer.paypal.com/docs/classic/mass-pay/ht_MassPay-customPayouts/

API Mass Pay API 250 . , , PayPal .

+1

Stripe Java- Android, .

Stripe , . API .

Stripe Stripe ( ).

. :

Stripe Connect

Stripe Connect

Stripe

0

API Mass Pay API 250 . , , PayPal .

1.

, , API API, :

https://api-3t.sandbox.paypal.com/nvp   # Sandbox endpoint  
USER=<Caller_ID>        # the PayPal User ID of the caller account  
PWD=<Caller_Pswd>       # the caller account Password  
SIGNATURE=<Caller_Sig>  # the caller account Signature  
METHOD=MassPay          # API operation  
VERSION=93              # API version  

2.

RECEIVERTYPE CURRENCYCODE EMAILSUBJECT ( ):

RECEIVERTYPE=EmailAddress                     # set to EmailAddress, UserID, or PhoneNumber  
CURRENCYCODE=USD                              # currency code for all payouts  
EMAILSUBJECT=You have a payment from TEST     # custom e-mail subject for all payouts  

3.

. , :

L_AMT0=1.23                                 # 1st txn amount, starting at "0"  
L_EMAIL0=e-mail_1@example.com               # e-dress of 1st payee  
L_NOTE0= Thank you for our catered lunch.   # custom e-mail msg for 1st payee  
L_UNIQUEID0=TxnNo123                        # unique ID for txn  

L_AMT1=4.56                                 # 2nd txn amount  
L_EMAIL1=e-mail_2@example.com  
L_NOTE1= Thank you the Balloons!  
L_UNIQUEID1=TxnNo456  

4.

cURL , Mass Pay:

curl -s --insecure https://api-3t.sandbox.paypal.com/nvp -d   
"USER=<Caller_ID>  
&PWD=<Caller_Pswd>  
&SIGNATURE=<Caller_Sig>  
&METHOD=MassPay  
&VERSION=93  
&RECEIVERTYPE=EmailAddress  
&CURRENCYCODE=USD  
&EMAILSUBJECT= You have a new payment from TEST  
&L_EMAIL0=e-mail_1@example.com  
&L_AMT0=1.23  
&L_NOTE0= Thank you for our catered lunch.  
&L_UNIQUEID0=TxnNo123  
&L_EMAIL1=e-mail_2@example.com  
&L_AMT1=4.56  
&L_NOTE1= Thank you for the Balloons!  
&L_UNIQUEID1=TxnNo456  
&L_EMAIL2=e-mail_3@example.com  
&L_AMT2=7.89  
&L_NOTE2= Thank you for your cleaning service.  
&L_UNIQUEID2=TxnNo789"  
0
source

Source: https://habr.com/ru/post/1531533/


All Articles