0

we are in Europe and actually, the guest payments (using credit/debit cards) to a friend aren't allowed. We are searching an alternative to avoid the paypal registration (we known the limitations of this payment type https://www.x.com/developers/paypal/guest-payments).

We are thinking the next workaround: (using chained payment):

          [fee 1]                             [fee 2]
Guest   ------------>   Primary receiver  -------------> Secondary receiver
(credit card)          (business account)                 (personal account)

So the Primary receiver don't get any money, transfers all the receiver money to Secondary receiver.

The problem is that, when you create the receivers list, you must specify the amount of Primary and Secondary receiver, if we set feesPayer to SECONDARYONLY, we don't know which is the exact amount, because we unknow the amount of fees (fee 1 + fee 2).

We have saw the "Payments Details API Operation", to try to get the fees from PayKey and then complete the payrequest message, but this information doesn't return in the message.

Any ideas ?

Thanks in advance.

4

1 に答える 1

0

連鎖支払いでは、主な受取人が支払いの合計金額を受け取ります。プライマリーが支払いを受け取ると、その合計金額までを他の受取人に分割できます。

この例では、消費者は $100.00 の支払いを行います。

一次受信者は $100.00 を受け取ります

次に、プライマリレシーバーは資金を次の宛先に自動的に転送します。

  • セカンダリレシーバー 1 $50.00
  • セカンダリレシーバー 2 $30.00
  • セカンダリレシーバー 3 $20.00

これは、二次受領者の合計金額が一次受領者の金額を超えない限り問題ありません。これは、すべての資金を持っている二次受信者が両方のトランザクションの手数料を負担するため、手数料の問題にも対処する必要があります。

取引前に手数料の金額を知らなかったのは正しいです。これは、支払いが行われている間に PayPal によって計算され、支払い前に可能な料金を確認するオプションはありません。あなたが受取口座の所有者である場合は、料金が請求されていることをすでに認識しているため、計算を実行できます。

ご不明な点がございましたら、お知らせください。

于 2013-03-04T23:54:20.913 に答える