Paypal Adaptive Pay

When I launch the PayPal Adaptive Pay call and I have installed about 3 receivers, how do I get the status of each recipient?

Because I get something like this:

Array ( [responseEnvelope.timestamp] => 2012-11-05T13:17:48.598-08:00 [responseEnvelope.ack] => Success [responseEnvelope.correlationId] => 8e31ecdad58ca [responseEnvelope.build] => 4110101 [payKey] => AP-6TJ00518SC231111B [paymentExecStatus] => COMPLETED ) 

Does this go through IPN or can I view it in the sandbox area? I keep re-reading PayPal docs and Im so confused :)

+4
source share
1 answer

just use the PaymentDetails api to get an array of PaymentInfo elements with status for each recipient. If you have permissions from each recipient to call the GetTransactionDetails API (which you can get using the permissions API), you can use the TransactionID from the PaymentDetails API response to get additional transaction data for each of the sub-transactions.

+1
source

Source: https://habr.com/ru/post/1444213/


All Articles