Skip to content

Instantly share code, notes, and snippets.

@andrewpthorp
Created January 5, 2014 04:06
Show Gist options
  • Save andrewpthorp/8264217 to your computer and use it in GitHub Desktop.
Save andrewpthorp/8264217 to your computer and use it in GitHub Desktop.
coupons
cus = Stripe::Customer.retrieve('cus_id')
coupon = Stripe::Coupon.retrieve('coupon')
cus.coupon = coupon.id
cus.save
# times_redeemed = 1
cus.coupon = coupon.id
cus.save
# times_redeemed = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment