#mike-account-updated
1 messages ยท Page 1 of 1 (latest)
Hello ๐
AFAIK, it should be account.updated event.
How exactly are you pausing the connected account?
we are pausing it the dashboard under the account #, and using the 3 dots- actions: pause payouts
Gotcha. And are you listening to webhook events locally or on a remote URL?
at the moment we are looking at the stripe log to see what is emitted. And seeing nothing. We are also listening at a remote URL webhook endpoint.
can you share the webhook endpoint ID?
It should look something like we_xxxxx
we_1IqmMCCwAArHtQSX6XP85N1O
You're testing trying this in testmode right?
yes correct
I'm actually not seeing any account.updated event getting generated on this account ๐ค
Ah I'm looking at the wrong account, sorry about that.
account.updated is generated on the connected account which the Platform account can listen to.
Where exactly are checking for the log/event?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
where are you listening?
Those are API requests logs
That's not where you'd find the account.updated event
sorry this is where we are looking https://dashboard.stripe.com/test/webhooks/we_1IqmMCCwAArHtQSX6XP85N1O
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I do see an account.updated event for capabilities
we_1IqmMCCwAArHtQSX6XP85N1O
Is this when you unpause the capability?
no that was when we changed the name on the account
we are not getting account.updated for the pause/unpause
that's not for the name change though
If you look at previous_attributes then you'd see what parameters were changed
"capabilities": {
"card_payments": "pending",
"transfers": "pending"
},
"charges_enabled": false,
"payouts_enabled": false,
"requirements": {
"disabled_reason": "requirements.pending_verification"
}
}```
so I just unpaused but not seeing any update in the log
What connected account are you unpausing the capabilities on?
Can you share the account ID?
acct_1JX6v02RheD8QslL
Hmm interesting.. let me ask a colleague to take a look as well
thx
Ah it seems like this is a known issue on our end. We've flagged the internal team already.
is the known issue that accounts.updated is not triggered on a charges_enabled change?
When these changes are performed by the dashboard, yes
We are looking to monitor accounts.updated for a possible Stripe-originated change to charges_enabled. (Say additional account documentation requirements needed after successful onboarding). Would we get an accounts.updated webhook in that case?