#sachindev13579
1 messages · Page 1 of 1 (latest)
Hello! Can you elaborate on the issue? What do you mean by 'transfer option'?
okay
i am trying to implement payout feature to users from my account so i want to know is this feature is available on only express account type using API.
It shouldn't be? What makes you think that? Are you seeing an error?
ok so while onboarding my user on stripe connect i can choose standard account type?
You'd specify that when you create the Account
// Set your secret key. Remember to switch to your live secret key in production.
// See your keys here: https://dashboard.stripe.com/apikeys
const stripe = require('stripe')('sk_test_tR3PYbcVNZZ796tH88S4VQ2u');
const account = await stripe.accounts.create({
type: 'express',
});
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
like in this code
i can opt for standard account also?
Yes: type: 'standard' (https://stripe.com/docs/connect/standard-accounts)