Answers for "connect onboarding for custom accounts specify country"

0

connect onboarding for custom accounts specify country

require 'stripe'
Stripe.api_key = 'sk_test_4eC39HqLyjWDarjtT1zdp7dc'

Stripe::Account.create({
  type: 'custom',
  country: 'US',
  email: '[email protected]',
  capabilities: {
    card_payments: {requested: true},
    transfers: {requested: true},
  },
})
Posted by: Guest on January-21-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language