kunal
kunal

Reputation: 323

Auth / Capture using Adaptive Payment of Paypal?

Is it possible to do authorization and capture using Adaptive Payment of Paypal ? How ?

Upvotes: 1

Views: 645

Answers (2)

Drew Angell
Drew Angell

Reputation: 26056

Sort of, but it's not really the same. What you would do is use the Preapproval API to create a preapproval profile for the payer(s) using your app. Then you can pass the preapproval key that you get back into future Pay API calls to submit payments on their behalf without further approval.

Setting up the preapproval would be similar to authorization a payment, and then running the pay call to trigger a payment would be similar to capturing.

This guide on setting up preapproval profiles should help you understand how it all works.

Upvotes: 2

gorodezkiy
gorodezkiy

Reputation: 3419

Also please keep in mind:

The preapproved maximum total amount of all payments cannot exceed $2,000 USD or the equivalent in other currencies.

Upvotes: 0

Related Questions