#Atul_thinker-connect-webhooks
1 messages ยท Page 1 of 1 (latest)
Hi there ๐ do you mean something like the account.updated events?
https://stripe.com/docs/api/events/types#event_types-account.updated
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hii @safe forge , I did not found any related attributes thorugh which i can check that this account has been verified by stripe or not.
I know the onboarding state of the user using two field , which is mentioned in document. But i just need to know how can i that this account verification have done by stripe.
*Know
I think you're going to want to look at capabilities within the account to determine what capabilities they have access to (and if it's enough to complete your flows) along with the requirements hash as that contains information like requirements.disabled_reason which indicates why an account was disabled if it was.
So , can i get web hook of account updated ..if account was updated by stripe. like if after successful verification from stripe the account capabilities will be changed. so in this case can i get the webhook of account updated?
@safe forge
That event will be sent whenever a parameter on the account changes, so requirement or capability changes will trigger them. Towards the bottom of the data object you can also see what attributes changed and what their old values were:
https://stripe.com/docs/api/events/object?lang=node#event_object-data-previous_attributes
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.