Skip to content

Instantly share code, notes, and snippets.

@mbeale
Created April 23, 2012 19:11
Show Gist options
  • Save mbeale/2473165 to your computer and use it in GitHub Desktop.
Save mbeale/2473165 to your computer and use it in GitHub Desktop.
PHP v2 recurly upgrade subscription add_on
$subscription = Recurly_Subscription::get('17caaca1716f33572edc8146e0aaefde');
$add_on = new Recurly_SubscriptionAddOn();
$add_on->quantity = 2;
$add_on->add_on_code = 'extraip';
$subscription->subscription_add_ons[] = $add_on;
$subscription->updateImmediately();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment