PayPal Bulk Payment with REST API

Is there a way to make a bulk payment from an application to several other accounts by email using the new REST API? I can do this using the classic API, but I donโ€™t know how to achieve this using the REST API.

I work with PayPal SDK for C #.

I found this related post: Paypal REST API Adaptive / Multiple Payments (change recipient) . However, some code samples would be nice.

+8
c # rest paypal
source share
3 answers

PayPal C # SDK does not currently allow these calls (11/11/2013.). The API itself has functionality that allows you to set the payee, but this functionality is still incomplete, since the PayPal REST API is in beta.

Using the PayPal Classic API is recommended here because it is stable and verified.

+8
source share

PayPal just made an affordable version of REST available. Here is a review of payouts.

To access:

  • Go to the control panel.
  • Go to My Account.
  • Find the payout option and click "Start."
+4
source share

This is Jason, the developer of the PayPal.NET SDK on GitHub. The payout API (formerly known as Mass Payments) is now available in version 1.2 of the PayPal.NET SDK. You can get the SDK binaries by downloading them directly from GitHub or using NuGet .

There is also a Design Draft included in the GitHub SDK that shows how to create batch payments , as well as extract batch payment details or an individual payout item .

If there is an example of use that is not in the samples and that you want to add, feel free to open a problem on GitHub with a description of the use case or send a transfer request, and I would be more than happy to add it. :)

+1
source share

All Articles