Using API calling account as receiver account

后端 未结 1 955
情话喂你
情话喂你 2020-12-12 03:00

I\'m trying to integrate Paypal Adaptive checkout using Active Merchant and active_paypal_adaptive_payment gem. During User registration, User needs to register his/her pay

相关标签:
1条回答
  • 2020-12-12 03:36

    You can use Chain Payments where the API caller email address and the secondary receiver email address are the same. You get this error You are logging into the account of the API caller of this transaction. Please change your login information and try again. when you are using the api caller's email as the sender of the payment.

    receiverList.receiver(0).email = YYY@gmail.com
    receiverList.receiver(0).amount = 5.00
    receiverList.receiver(0).primary = true
    receiverList.receiver(1).email = XXX@gmail.com `this can be the api caller's email address as well`
    receiverList.receiver(1).amount = 2.00
    receiverList.receiver(1).primary = false
    feesPayer = EACHRECEIVER
    
    0 讨论(0)
提交回复
热议问题