#ajay-connect

1 messages · Page 1 of 1 (latest)

hybrid sluice
#

@rigid plover do you mean you are using Custom Connect accounts (like you create the account with an API call with type:"custom" )?

rigid plover
#

yes

hybrid sluice
#

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.

rigid plover
#

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?

hybrid sluice
#

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

rigid plover
#

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

hybrid sluice
#

no you can not get API keys for the account, and you don't need them.

#

you do everything through your platform account

rigid plover
#

\Stripe\PaymentIntent::create([
'amount' => 1099,
'currency' => 'usd',
'payment_method_types' => ['card'],
], [
'stripe_account' => '{{CONNECTED_ACCOUNT_ID}}',
]);

#

so this will do rest right?

hybrid sluice
#

that is a Direct Charge

#

you should never do that with a Custom account.

rigid plover
#

any referance I can go through for connected custom account?

hybrid sluice
#

what kind of reference are you looking for specifically? there's extensive documentation on our website, I've linked parts of it above.

rigid plover
#

thank you so much
I will go through it