Skip to content Skip to sidebar Skip to footer

Paypal Recurring Payments Form

I have a website with a payment form, I want to add recurring payments. how would i do that? what ID's do I need to use in the form fields? I saw a WordPress plugin that uses a3 t

Solution 1:

a3 - amount to billed each recurrence
p3 - number of time periods between each recurrence
t3 - time period (D=days, W=weeks, M=months, Y=years)


<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<inputtype="hidden" name="cmd" value="_xclick-subscriptions">
<inputtype="hidden" name="business" value="me@mybusiness.com">
<inputtype="hidden" name="currency_code" value="USD">
<inputtype="hidden" name="no_shipping" value="1">
<inputtype="image" src="http://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<inputtype="hidden" name="a3" value="5.00">
<inputtype="hidden" name="p3" value="1"> 
<inputtype="hidden" name="t3" value="M">
<inputtype="hidden" name="src" value="1">
<inputtype="hidden" name="sra" value="1">
</form>

Solution 2:

Mandatory fields are:

a3: Regular rate. This is the price of the subscription

p3: Regular billing cycle. This is the length of the billing cycle. The number is modified by the regular billing cycle units (t3, below)

t3: Regular billing cycle units. This is the units of the regular billing cycle (p3, above) Acceptable values are: D (days), W (weeks), M (months), Y (years)

no_note: This field makes sure your subscriber is not prompted to include a note with the subscription, a function which PayPal Subscriptions does not support. This field must be included, and the value must be set to 1.

Source: Subscriptions and recurring Payments Guide from PayPal.

It's important to note that without the optional field src (also described in the doc above) the subscription expires just after the first transaction and threfore it's not recurrent:

src: Recurring payments. If set to “1,” the payment will recur unless your customer cancels the subscription before the end of the billing cycle. If omitted, the subscription payment will not recur at the end of the billing cycle.

Post a Comment for "Paypal Recurring Payments Form"