1

在我的服务器端,我刚刚开始通过 AngelEye PHP SDK 收到来自自适应支付 API 的积极响应,以实现延迟链式支​​付,主要接收方持有长达 90 天的资金,分散到二级接收方账户。

在客户端,我使用 JSON 编码的 API 响应返回的 RedirectURL 将用户重定向到结帐。所以最坏的情况已经过去,但我不明白 PayPal 的“明确执行向二级收款人付款”是什么意思?

是否明确暗示我必须在满足我设置的标准后登录我的 PayPal 并手动将资金支付到辅助收款人帐户?首先,我试图弄清楚如何在延迟链式支​​付中延迟链。一旦我(应用程序所有者)收到来自二级接收方的标准(例如跟踪号),我是否可以让资金以某种方式自动发送到我的服务器上

延迟链式付款

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 回答