1

私のサーバー側では、AngelEye PHP SDK を介して Adaptive Payment API から肯定的な応答を受け取り始めたところです。これにより、遅延チェーン支払いが実現されます。これは、プライマリ レシーバーによって最大 90 日間、セカンダリ レシーバー アカウントに分散された資金を保持します。

クライアント側では、JSON でエンコードされた API 応答によって返された RedirectURL を使用して、ユーザーをチェックアウトにリダイレクトします。最悪の事態は終わりましたが、PayPal が「明示的に第 2 の受取人への支払いを実行する」という意味を理解していませんか?

設定した基準を満たした後、PayPal にログインし、2 番目の受取人の口座に資金を手動で支払う必要があることを明示的に暗示していますか? 主に、遅延チェーン支払いでチェーンを遅延させる方法を理解しようとしています。アプリケーションの所有者である私が、追跡番号などの二次受信者から基準を受け取ったら、資金を何らかの方法でサーバーに自動的に送信することはできますか?

連鎖支払いの遅延

By default, payments to all receivers in a chained payment are immediate. 
However, you can choose to delay a payment to a secondary receiver. For 
example, as primary receiver, you may require secondary receivers to perform 
some action, such as shipping goods or waiting for expiration of a return 
period, before making payment. To complete the payment, you must explicitly 
execute a payment to secondary receivers after the sender pays you. The 
payment must occur within 90 days, after which you cannot complete the payment 
as part of the original chained payment.
4

1 に答える 1

0

解決した

Step 4: Make a Payment to One or More Secondary Receivers

When the time comes to pay secondary receivers, call ExecutePayment, 
specifying the pay key from Step 1. For more information on this call, see 
the ExecutePayment API Operation.

When the time comes to pay secondary receivers, all secondary receivers must 
be paid at once.

PayKey + ExecutePayment = 答え!

于 2017-09-23T18:08:44.380 に答える