Home > Software engineering >  How to test stripe Standard connect integration since test accounts need validation first?
How to test stripe Standard connect integration since test accounts need validation first?

Time:09-03

When trying via code to create standard accounts, the option to skip the form is not present. Even though the page to connect the account shows the test-mode tag, the page expects you to fill the form with "real" data.

When creating the account using the Stripe Dashboard in test mode, you are given a link that shows the New account flow and it has a "skip form" option. The option basically closes the form, but the account is still in restricted mode.

standard accounts with skip-form are initially restricted and there is no way to provide test data so that their status changes

What is required to have a Standard test account in order to test the other functionality of charges, checkouts, etc?

CodePudding user response:

In test mode, even if the Standard account is restricted, you should be able to use all Stripe features. And if you want to change the status of the account from "restricted" to "completed", then you have to provide all the information listed in the screenshot you shared.

Note that the recommended way to connect Standard accounts to your platform is to use Connect onboarding.

  • Related