Skip to content

Instantly share code, notes, and snippets.

@matthewarkin
Created February 22, 2016 21:31
Show Gist options
  • Save matthewarkin/9a278fc0b1ed553a25da to your computer and use it in GitHub Desktop.
Save matthewarkin/9a278fc0b1ed553a25da to your computer and use it in GitHub Desktop.
///// ERRORS
var stripe = require("stripe")("sk_test_foo")
stripe.customers.cancelSubscription(
"cus_7kao3kVTFYB3ht",
"sub_7kaoBQVhkpGlsG",{
at_period_end_test:true
},
function(err, subscription) {
console.log(err,subscription)
}
);
///// Works
var stripe = require("stripe")("sk_test_foo")
stripe.customers.cancelSubscription(
"cus_7kao3kVTFYB3ht",
"sub_7kaoBQVhkpGlsG",{
at_period_end:true
},
function(err, subscription) {
console.log(err,subscription)
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment