Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing the Amount of a PayPal Subscription

We are using PayPal subscriptions to automatically make ongoing monthly donations. The user initially creates a subscription with some pre-determined monthly donation amount (e.g., say $50/month). This creates a recurring subscription which we process by way of IPN. All good there. But, our interface allows the user to come in and change their monthly donation amount, say from $50/month to $100/month. I am wondering how I can change the PayPal subscription to reflect this new amount?

There is a method in PayPal's NVP API called "UpdateRecurringPaymentsProfile" which says I can update the subscription amount, but unfortunately it says:

For recurring payments with Express Checkout, the payment amount can be increased by no more than 20% every 180 days (starting when the profile is created).

(reference: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_UpdateRecurringPaymentsProfile)

To be honest, PayPal's API's are quite confusing so I'm not sure if I am using the Express Checkout or not. (We are creating Subscription buttons using the simple Website Payment Standard API).

Will this work? If not, is there an alternative to achieve what we need?

Thanks!

like image 402
cambo Avatar asked Oct 03 '11 21:10

cambo


People also ask

How do PayPal subscriptions work?

PayPal attempts to collect recurring payments from subscribers on the day after the previous billing cycle or trial period ends. Billing cycles can be daily, weekly, monthly or yearly, depending on the terms of the original subscription.

Does PayPal have a monthly subscription?

3. No monthly fees. PayPal does not charge fixed monthly fees. Merchants are only charged when they sell.

How do I stop recurring payments in PayPal?

To cancel your PayPal recurring payment, login with PayPal and follow PayPal's instructions on how to cancel a subscription. In short, you need to find the preapproved payments menu or the transaction where you set up the subscription (or the last transaction sending funds to JMIR) and select cancel.

How do I manage automatic payments on PayPal?

On the main menu, click the gear icon on the right to access your account settings. Next, click on the Payments on the submenu that will appear below the main one. To see your recurring payments, click on Manage automatic payments. On the next page, you should see all the automatic payments on the left.


1 Answers

I'm not sure if I am using the Express Checkout or not. (We are creating Subscription buttons using the simple Website Payment Standard API).

I hope rereading the above, you will realize that you answered your own question: You are using Website Payments Standard (WPS) not Express Checkout (EC).

With WPS, you can create a subscription modify button but this is super inflexible and I would not recommend it.

With EC, you can modify subscriptions as well (page 99):

Use the UpdateRecurringPaymentsProfile API to modify a recurring payments profile.

NOTE: You can also modify recurring payments profiles from the PayPal website.

You can only modify the following specific information about an active or suspended profile:

  • Subscriber name or address
  • Past due or outstanding amount
  • Whether to bill the outstanding amount with the next billing cycle
  • Maximum number of failed payments allowed
  • Profile description and reference
  • Number of additional billing cycles
  • Billing amount, tax amount, or shipping amount

NOTE: You cannot modify the billing frequency or billing period of a profile. You can modify the number of billing cycles in the profile.

NOTE: For recurring payments with Express Checkout, certain updates, such as billing amount, are not allowed within 3 days of the scheduled billing date, and an error is returned.

You can modify the following profile information during the trial period or regular payment period:

  • Billing amount (excluding tax and shipping)
  • Number of billing cycles

With that information out of the way... For the most flexibility:

Look at creating Billing Agreement IDs through Express Checkout. You will need to get Reference Transactions enabled on your PayPal account (talk to merchant support to get this done).

With a BAID, you control when your customers are charged, how much they are charged, and pretty much anything else having to do with the transaction. The drawback is the same as the benefit.. you (see 'have to') control it all.

like image 121
SgtPooki Avatar answered Oct 10 '22 14:10

SgtPooki