#ajay-connect
1 messages · Page 1 of 1 (latest)
@rigid plover do you mean you are using Custom Connect accounts (like you create the account with an API call with type:"custom" )?
yes
then there is no Stripe login
the point of using Custom is that you build all that, it's a whitelabel option, the user doesn't have to know Stripe exists. They do not have an account with Stripe they can log into or a Stripe dashboard.
oh
If I am owner
I created my connected account for my merchant
From stripe I can switch to their account
But isnt it possible for merchant view their dashboard?
correct
Custom account holders don’t have access to the Dashboard, and Stripe doesn’t contact them directly.
Use Custom accounts when you:... Can build the significant infrastructure required to collect user information, create a user dashboard, and handle support
atleast I can get key and secret?
Like for normal account
For fund transfer to merchant
Or its mandatory to use owner credentials only and pay to merchant
no you can not get API keys for the account, and you don't need them.
you do everything through your platform account
\Stripe\PaymentIntent::create([
'amount' => 1099,
'currency' => 'usd',
'payment_method_types' => ['card'],
], [
'stripe_account' => '{{CONNECTED_ACCOUNT_ID}}',
]);
so this will do rest right?
any referance I can go through for connected custom account?
what kind of reference are you looking for specifically? there's extensive documentation on our website, I've linked parts of it above.
thank you so much
I will go through it