Reputation: 411
I'm trying to call a single Payout using PHP with the Paypal API SDK.
The API Reference only has curl examples for Payout but when switching to the PHP tab (or any other language at the top of this page for that matter) there is no example code.
Where do I find the API Reference for the PHP SDK? I need information on the classes the sdk invokes. Perhaps it simply doesn't exist but I would like confirmation before going around the SDK and using curl lib.
Upvotes: 0
Views: 190
Reputation: 26056
The REST API doesn't provide the same sort of API reference. I would recommend using this PayPal PHP SDK instead, which coincides with this API reference.
Upvotes: 1
Reputation: 156
This should be the reference you are looking for:
http://paypal.github.io/PayPal-PHP-SDK/sample/#payouts
http://paypal.github.io/PayPal-PHP-SDK/sample/doc/payouts/CreateSinglePayout.html
Upvotes: 2