Skip to content

Instantly share code, notes, and snippets.

@pootsbook
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pootsbook/0e0b8c14f381902f9ce5 to your computer and use it in GitHub Desktop.
Save pootsbook/0e0b8c14f381902f9ce5 to your computer and use it in GitHub Desktop.
A Hash of the Stripe::Account attributes for Connect managed accounts (26 Mar 15)
stripe_account = {
country: 'US',
display_name: 'string',
email: 'string',
business_name: 'string',
business_url: 'string',
managed: true,
bank_account: 'stripe.js token',
legal_entity: {
address: {
line1: 'string',
line2: 'string',
city: 'string',
state: 'string',
postal_code: 'string',
country: 'US'
},
dob: {
day: 1,
month: 2,
year: 1966
},
personal_address: {
line1: 'string',
line2: 'string',
city: 'string',
state: 'string',
postal_code: 'string',
country: 'US'
},
business_name: 'string',
first_name: 'string',
last_name: 'string',
type: 'individual | company'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment