#ingelran - Express Connect
1 messages · Page 1 of 1 (latest)
Hi. The API returns the account object when you first create the Express Account. You should be able to retrieve the API from that.
We do have an event account.updated which you can listen to for changes to your connected accounts.
For that you will want to set up Connect webhook listeners to capture these events:
https://stripe.com/docs/connect/webhooks
I see
So if stripe accept the bank document
The webhook was only updated
?
No way to know ?
When the user click the accountLink
Fill the form
And finished
The webhook event fires when the Connected account is updated.
The request from the webhook will contain the account object you can inspect. https://stripe.com/docs/api/accounts/object
I see
And inside the account objet
I can see if the account is validated to receive paiment
?
The first place I would start looking is the capabilities attribute on the account object:
https://stripe.com/docs/api/accounts/object#account_object-capabilities
I will a look thank you