#mudachyoo
1 messages · Page 1 of 1 (latest)
Is this a Connect scenario, or entirely separate accounts?
How are you collecting the bank details?
im using customers api
Can you share an example of what you're doing now?
i have one stripe element on a page connected to one stripe account
and when user entering his details into form, i am adding him into my stripe account
i want to know if i can duplicate this details into my other account
do you understand my question or no?)
If you're tokenizing via Stripe.js (eg, creating a ba_123 ) then no, that can only be used with the account that creates the token
If you have the raw routing/account number on your server, you could send that to two different accounts
to be short,
im using StripeElement (Payment Element). *const stripePromise = loadStripe(process.env.NEXT_PUBLIC_STRIPE_KEY);`*
And creating that stripe element with secret_key, after entering form i enter card details and creating customer in personal cabinet.
But i cannot pass that card details to other stripe account with OTHER key.Because it depends on it/
Am I right?
Correct, when you initialize stripe.js like that and create payment methods etc, you can only use those on the same account
thanks)