如何在Paypal中推迟付款执行。

时间:2013-08-16 09:07:38

标签: paypal

我找到了this页面,告诉我们如何执行Paypal付款。

它没有说是否可以延迟使用Paypal执行付款的最后一步。

可以推迟吗?以后可以使用他们的API捕获付款,但是当您通过Paypal发送用户授权付款时,这似乎不会涵盖。

1 个答案:

答案 0 :(得分:2)

授权& PayPal钱包付款也可以获取(如文档here所示)。只要您将intent设置为authorize,它就会创建授权。

{
  "intent":"authorize",
  "redirect_urls":{
    "return_url":"http://<return URL here>",
    "cancel_url":"http://<cancel URL here>"
  },
  "payer":{
    "payment_method":"paypal"
  },
  "transactions":[
    {
      "amount":{
        "total":"7.47",
        "currency":"USD"
      },
      "description":"This is the payment transaction description."
    }
  ]
}