Payout to unregistered user with REST API

I use the Paypal REST API to make a single payout ( https://developer.paypal.com/docs/api/#payouts ). As a recipient, I give an email address. Everything works as expected if I give an email matching the existing Sandbox Paypal account.

When I give an email that is not registered in my test sandboxes, I would expect the payee to receive the email to be invited to create their Paypal account to request a payout.

However i got "RECEIVER_UNREGISTERED: Receiver is unregistered (https://developer.paypal.com/webapps/developer/docs/api/#RECEIVER_UNREGISTERED)."

To send an email as a recipient associated with an existing Paypal system, is this really necessary? If so, what is your workflow for sending Paypal Payout to unregistered Paypal users?

Thanks!

+4
source share
1 answer

When you make a payment to an unregistered letter, the payment status becomes " Unclaimed".

If the user is registered in PayPal, you usually get the transaction status " Success".

Error messages have an informative purpose only:

"errors":{
"name":"RECEIVER_UNREGISTERED",
"message":"Receiver is unregistered",
"information_link":"https://developer.paypal.com/docs/api/payments.payouts-batch/#errors",
"details":{}
},

- , . Paypal. , .

30 , . 30 .

API .

0

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


All Articles