I am developing an iOS application that rewards users for specific activities with cash payments. Yes, I understand there are restrictions on this with the App Store and I've considered these. My questions is specifically about the PayPal SDK and whether it is suitable for allowing an iOS application to connect with a user's PayPal account, so the user can elect to receive payment for their rewards. Essentially, I need a "receive payment" button in lieu of a "Pay Now" button. My questions is about iOS specifically and whether or not the PayPal SDK is suitable for receiving payments as a user.
Asked
Active
Viewed 115 times
1
-
I don't see how that would work; a user can't just unilaterally transfer money from a PayPal account. They can send you a request for payment; this could just be an email sent via MailGun or an entry in a database – Paulw11 Nov 10 '16 at 04:48
1 Answers
0
The PayPal-iOS-SDK is for enabling a user/customer to authorize and pay for purchases, or pre-authorize future payments for purchases. Not what you seem to be looking for.
Instead, check out PayPal's Payouts API, which replaces the never-to-be-depreciated MassPay API (for the differences, see this Stack Overflow Q&A). There's also a remote possibility that you're a candidate for the AdaptivePay APIs.
-
1Thanks for the answer. I checked out the SDK and it does indeed provide the services I need. Thanks AmitaiB. – edward Dec 04 '16 at 04:57