Skip to content

Instantly share code, notes, and snippets.

@andrewpthorp
Created January 10, 2014 19:13
Show Gist options
  • Save andrewpthorp/8360607 to your computer and use it in GitHub Desktop.
Save andrewpthorp/8360607 to your computer and use it in GitHub Desktop.
Stripe Node Subscription Cancellation
stripe.customers.cancelSubscription(
"customer_id", { at_period_end: true }, function(err, response){
// handle the err/response here
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment