#Huzaifa
1 messages ยท Page 1 of 1 (latest)
acct_1MO0DVI6SY7LBV4x
It looks like the city, state, and postal code are missing from the individual.address
These will need to be supplied to enable the account
You can try using a new account link to go through the onboarding process a second time (which will only collect the missing information)
is these fields are not asked in the account setup
They can be but requirements also update depending on requirements
ok
so iam building custom eccommerce marketplace with react and nodejs
so i want to know with what type i should go with
standard
express
custom
???
That is a decision that requires some serious consideration and not a quick answer.
I would start by considering what responsibilities you want to be on the Platform and on the Connected Accounts. You should start with reviewing this doc and considering what each type would mean for your marketplace: https://stripe.com/docs/connect/accounts
That depends entirely on how your marketplace is going to work. With Custom Accounts the Platform handles all the Charges, keeps all the Customer records, and it takes a lot of engineering on the part of the platform.
ok as you said for requirements i have generate account link again for fulfill the account requirements
so the request will be same as below ???
const accountLink = await stripe.accountLinks.create({
account: req.body.accound_id,
refresh_url: "http://localhost:5173/refresh",
return_url: "http://localhost:5173/return",
type: "account_onboarding",
});
Yes that should work just fine
let me check
if i choose standard or express
stripe will save everything
and then i can grab it using the apis
right >
Not necessarily.
You really should review those documents and the pages for each Account Type seriously
ok
also one thing i want to know
that obviously there is a cart in my site
and it can have multiple items by multiple vendor
so how can i make a payment to multiple vendor in a single order like payment intent
That sounds like a Separate Charge & Transfers funds flow to me: I would review these docs: https://stripe.com/docs/connect/charges-transfers#collecting-fees
That way you create the Charge first, then transfer portions of the funds to as many merchants as were involved
After the charge is made
but it takes some days when the amount get charge to my account
am i right >>
That depends on the type of payment method and your integration. I would recommend testing your approach before going live
i will
but i want to know from you
currently iam receiving simple payments
and it takes some days to clear
i want to know that how charge api will charge customer and divide the amount
??
The charge API wont divide the amount. Your integration does that by transferring funds from your account to the merchant accounts
yes
thats iam asking it takes time in amount to be clear and to be in my balance
until then does the seller can view upcoming payments ?
๐ stepping in as Snufkin needs to step away
Catching up
Are you asking how to handle the pending timing of the balance when making multiple transfers?
yes
iam making multivendor
Snufkin told me about charge api
as for now i know that it takes time for the amoung to get into my balance
i want to know that it will be show into my seller panel or not
Okay so yes if you move funds into their account prior to them being available, using source_transaction then they will show up in the Express Dashboard
I encourage you to test this out
can you share this api link
The source_transaction?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok
i have create a charge first by charge api and call the transfer api to send the payment to multiple endor
now i want to know how to charge customer , i mean i have created the payment method by api
now how can i use that payment method api to charge the customer
i have frontend in react for that