Reputation: 580
I am working on iOS project in which their is the functionality like users can directly sell product to other users. I have integrated Paypal API for do payment. I did R&D on this topics and I found that I need to implement Adaptive PAI rather then simple payment API. I have integrated below paypal SDK:
https://github.com/paypal/PayPal-iOS-SDK
In this there is the method for simple payment and parallel payment but there is no methods for fund transfer or adaptive payment. So if anyone have idea regarding how I can directly transfer money from buyer to seller account then please give me some advice.
Thanks in advance.
Upvotes: 0
Views: 475
Reputation: 26036
I believe you're using the newer "Mobile SDK" which is built on the REST API and doesn't fully support Adaptive Payments yet. Instead, you want the "Mobile Payment Library (MPL)" which is built on the Classic API and does support all the features.
You can find more details about the two here: https://developer.paypal.com/webapps/developer/docs/integration/mobile/mobile-sdk-overview/
Upvotes: 1