English 中文(简体)
paypal subcription: Can I make the first payment different ammount?
原标题:

I am currently working on Paypal Payment Pro and need to have a special recursive payment.

In this case. My client want to make the first month payment is 0, and in following months, the payment will be 5$ each.

Is there any way or document about this? I personally don t know what it s called so I can t google around.

Thank you very much.

最佳回答

yes you can do that,please use below fields as hidden and try.

<input type="hidden" name="a1"value="0.00">  
<input type="hidden"name="p1" value="15"> 
<input type="hidden" name="t1" value="D">

here is the code by which you can payment for first 15 days free. you can set any amount in field a1,p1,t1 to make payment..

here a1 is the amount you want to pay, p1 is frequency of payment, and t1 is time period you want to recurring..where D=daily,M=monthly,Y=yearly.

Try this.it may be helpful to you..

问题回答

Should this question be closed due to your other question? I d look into the TRIALBILLINGPERIOD and TRIALAMT parameters in the PayPal Documentation.

Just start the users subscription ONE month from today, since it s O dollars anyways. I charge my clients $1, as there are fees, and just set their payments to start one month from today. Charging them something let s you know that they can pay it, and gives you a month to hack out the details if their card is borked.





相关问题
2. 提交多件物品,一劳永逸地与营地一起支付

我有一些销售物品,有2和3级的定制。 一旦安装了用户,就会增加我的现场车。 问题在于,如何把每一件物品送到检查时支付费用? 唯一发现的法典......

PHP - Paypal product timeout

I have finally got my paypal system working using IPN and a reservation system to ensure that two people do not buy the same product. The problem is, the reservations last for 10 mins on my ...

Paypal not picking up shipping?

this is strange, for some reason this paypal isn t picking up my shipping_1 value, yet I have done another form similar, and it goes through ok? I have no idea what s wrong with it.. <form target=&...

PayPal Website Payment Pro / Payflow Pro Difficulties

Okey, I m using PHP/SQL for my built web-cart. I also have the required paypal account (business) so I have an API authentication. I also made a sandbox account and got an API authentication there too....

How to link username in site to PayPal information email?

It s not a problem but i don t know how to do this; let s say that I have a sign up form with some fields: username, password, email, as you know the user clicks on the BUY BUTTON and pay s up. Well, ...

About paypal express checkout api

In this picture,there are 3 main steps:SetExpressCheckout,GetExpressCheckoutDetails and DoExpressCheckoutDetails,I m now sure SetExpressCheckout is to be called by myself,what about ...

Does HttpWebRequest send 200 OK automatically?

Background: I am implementing Paypal IPN handler. This great article on Paypal states that I am required to send a 200 OK back to Paypal after I read the response. The processing of IPN request is ...

热门标签