#jmak
1 messages · Page 1 of 1 (latest)
Hi, you can pre-fill account details when creating the account, https://stripe.com/docs/api/accounts/create and https://stripe.com/docs/api/accounts/create#create_account-business_profile for instance to pre-fill business details.
You can also use the Accounts Update endpoint to provide this information https://stripe.com/docs/api/accounts/update after the account is created.
i see
but the code itself is just in charge of prefilling certain parts of information such as capabilities and whatnot right
so the post request will handle that but i need the user themselves to actively fill out the rest
such as ToS and whatnot
That is correct
is there anyway i can just edit this info from the platform account so i can test the checkout sessions on my connected accounts
Hmm, you can look at the requirement's hash: https://stripe.com/docs/api/accounts/object#account_object-requirements-currently_due and look at what is currently due, then update the account with the information needed to fulfill that requirement.
programmatically or via gui?
Via the API, you cannot do this via the Dashboard on behalf of the Connected account.
gotcha, so I can't do this part on here
is there like a way to delete the account so i can try the flow again?
all i see are tehse options
To test Connect, you can use this document that provides test data: https://stripe.com/docs/connect/testing and specifically for payouts, you can use these test bank accounts: https://stripe.com/docs/connect/testing#payouts. I would recommend that and follow this document for test data when pre-filling. You can delete the account via the API: https://stripe.com/docs/api/accounts/delete when in test mode for all Connect account types.
alright got it