#AdamTheDeveloper
1 messages · Page 1 of 1 (latest)
Hi there!
No you cannot remove fields from the connect onboarding.
However you can prefill some of the information when creating the account itself: https://stripe.com/docs/api/accounts/create
How can we stop customers modifying the account name then?
What type of accounts are you creating? Standard, Express, or Custom?
Custom
Hi 👋 taking over for my teammate as they needed to step away. With Custom accounts you have a great deal of control over the values for those accounts. You can create a webhook that listens for account.updated events, so you're notified any time a change is made to one of those accounts. The code that detects this could then also undo those changes if they aren't ones that you want to permit.
That's great, thanks!