#NeatFastro-opensource
1 messages · Page 1 of 1 (latest)
Hi! So you are looking for an open source project that use both flutter and custom connect?
yep that would be great, but if I can only get a web app (html, css and javaScript or any web frameworks e.g next, svelte etc)
that would be fine too
You can find all official Stripe samples in this github repository: https://github.com/stripe-samples
There might be other open source project you can find, but since they are not built by Stripe I don't know about them. You'll have to search online for this.
ok thanks
If a user create a connect custom account through our platform and then later some information gets invalidated (e.g. user debit/credit card expired) then what happens and where will I be able to find answers for other similar questions
I'm not talking about requirements changes but the already provided valided info gets invalid over time
is there an api end point for this or a webhook which will notify the us (or user) so we can update the info
Usually to be notified when things change on the connected account you should listen to the webhook event account.updated.
Though I'm not sure if it is triggered when a card expire.
I agree that account.updated is a good event for most anything account related. I am not aware of much info that would be invalidated over time. In your credit card example are you talking about a credit card for payouts or one of your user's customer's has a card that expires?
card for payouts
For that scenario specifically, you may want to listen to account.external_account.updated or account.external_account.deleted
ok thanks