#hritik9607
1 messages · Page 1 of 1 (latest)
You can use List Accounts API to iterate all the connected accounts, then filter the connected accounts that still contains requirements hash, i.e. verification is still required: https://docs.stripe.com/connect/custom/handle-verification-updates#adjust-integration-new-responses, then create account link for the connected account holder to complete the new requirements
Is there any API that will provide information about a specific old connected user that requires updates?
I think the List Accounts API will provide a list of all users whose verification is pending.
Is there any API that will provide information about a specific old connected user that requires updates?
I'm afraid there is no API support this feature.
The recommended approach is to listen to account.updated event and check whether there is any requirements hash instead of retrieving via API
can you please give us the doc where we can get the request paramter to triger this account.updated event
account.updated event is sent by Stripe when there is an requirement change. It's not triggered by your end
If you're referring to how to test account.updated event in test mode, it can be done with Stripe CLI: https://docs.stripe.com/cli/trigger
Okay, since we're utilizing a Stripe-hosted integration, what specific changes do I need to implement for this update? Also, do we need to make adjustments for new merchants joining our platform, or should we focus on modifying accounts already registered?
Which connected account type are you using? Standard, Express or Custom?
How i will get to know this
When you create a connected account, it should be set in your request
Otherwise, a connected account can't be created
You can check what is the connected account type is created in your request
ok let me check
Here is my account ID: 'acct_1H0VvFJrI1xwkEuo'. I'm unable to determine the type of my connected account. Could you please use this ID to identify its type?
@spiral pike
This is a platform account. Based on https://dashboard.stripe.com/connect/accounts/overview, it seems like the connected account type created are all custom
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Here's the guide how you can listen to the account.updated event and create an account link:
I'd recommend reading both as both provide the details about the same handling of new requirements
ok i am checking
in this SS is is mentioned that "You don’t have to update your onboarding flow when requirements change. Stripe automatically updates hosted onboarding accordingly." so do we not need to make changes for new onboarding flow
Which doc link do you get this information from?
https://docs.stripe.com/connect/custom/handle-verification-updates#adjust-integration-new-responses this doc
With custom connected account, you have the options to use API or Stripe hosted onboarding to collect the new requirements. The highlighted field means that you don't have to collect those information manually via API and just simply carete a hosted onboarding page and Stripe will collect the missing requirements
You still need to create a new hosted onboarding page when there are new requirements, but the collection will be done in hosted page