#jasontheadams
1 messages · Page 1 of 1 (latest)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I think that only works with Custom and Express accounts (you should try it to make sure, but I believe you'll get an error). For Standard accounts you can disconnect them using this approach: https://stripe.com/docs/connect/oauth-standard-accounts#revoked-access
Use the OAuth connection flow to allow a Standard user to connect to your platform.
As far as reconnecting, you need to facilitate the onboarding flow so you can block them from reconnecting with the same account ID on your end.
Got it. Thank you!
As far as blocking someone from reconnecting, we wouldn't know the account ID until after they've connected, right? So someone would connect, we catch them, and disconnect them?
Yep. Do you have a way of identifying the people you don't want to connect before they connect?
We could do it by domain. I'd probably blacklist both, as I don't want someone to just connect using another domain.