Skip to content

Instantly share code, notes, and snippets.

@scottsappen
Created June 24, 2015 01:36
Show Gist options
  • Save scottsappen/81d1d36a50e38fdd71f9 to your computer and use it in GitHub Desktop.
Save scottsappen/81d1d36a50e38fdd71f9 to your computer and use it in GitHub Desktop.
Create a Stripe Managed Account...wow that is easy.
#Stripe platform key
stripe.api_key = pmsconstants._STRIPE_SECRET_KEY
#Create the Stripe managed account
stripeAccount = stripe.Account.create(
country='US',
managed=True,
email=member.emailaddress
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment