#Adam-Express
1 messages · Page 1 of 1 (latest)
Hi Adam, AccountLink is for Standard account, is your question related to Express or Standard account?
Oh sorry so this is my current code app.get("/create-account-hosted", async (req, res) => { var account = await stripe.accounts.create({ type: "express" }) var accountLink = await stripe.accountLinks.create({ account: account.id, success_url: "https://example.com", failure_url: "https://example.com", type: "account_onboarding", }); // We may need to add a person or any other Accounts that need to be set up res.send({accountLink}) // res.redirect(accountLink.url) })
This allows a user to create an Express account
We went thru the form ourselves to test the fields, but it didnt ask about any Tax information
I think the 1099K is what Amazon and Etsy use https://stripe.com/docs/connect/tax-reporting
So Im not sure if we can put that into the forms of the Connect signup stuff
Oh gotcha I do see this here