#leonardo.pliskieviski
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- leonardo-connect-brazil, 5 days ago, 20 messages
Hi 👋 part of the delay that can occur there is if there are asynchronous verifications that need to be completed. Typically we recommend setting up a webhook endpoint to listen for account.updated Events emitted by your Connected Accounts so you can be notified when anything about those accounts changes. If you do that, we will notify you when those values change from false to true.
so the webhook is real-time? can I set the result of the web hooks to my account model and check right away when the user goes to the success page?
The API is realtime as well, the object of an Account retrieve from the API is the current state of the Account. Webhook endpoints are a way to subscribe to object changes so you don't have to poll for them. We will send Events whenever objects change state that matches one of our criteria for triggering an Event. Then that Event is sent to your server, and you can handle the data in it as seen fit.
https://stripe.com/docs/connect/webhooks
I'll test, thanks