#kuutamolla - account link
1 messages · Page 1 of 1 (latest)
Using an account link is the proper method: https://stripe.com/docs/connect/express-accounts#handle-users-not-completed-onboarding
However, depending on how far they got in the onboarding, they may have to start over
elsif current_user.onboarding_in_progress?
@analog skiff_link = Stripe::AccountLink.create(
account: current_user.merchant_id,
refresh_url: root_url + "payouts",
return_url: root_url + "payouts",
type: 'account_onboarding',
)
end
So this should be appropriate? merhcant_id refers to the stripe account's id.
This isn't creating multiple users on the stripe dashboard with the same email?
No just one. That's what that account param is for