#dupont-pending-account

1 messages ยท Page 1 of 1 (latest)

native rain
#

Hey there ๐Ÿ‘‹ I just want to make sure that I'm understanding your question correctly. You're asking how to check if additional information/verification is necessary for a connected account to have access to a capability?

grizzled blaze
#

Hi, yes and no ๐Ÿ˜‚
When I test connect, connected account are directly verified.
In production, there will be a pending period where Stripe will check documents.
I would like to know, through the information of the Account object (with account.update event in webhook), how can I know when a connected account is in the state "pending"

native rain
#

Gotcha, please bear with me while I look into that.

grizzled blaze
#

After re-reading, it's seems when requirements.pending_verification

#

I have another question :

It is possible for a connected account to have the capability "transfert" == "active" when the account is "pending" ?

ornate zodiac
#

Yea @grizzled blaze you'll want to pay attention to the requirements and the state of the capabilities .

It's possible in the future perhaps if new requirements were due that were being verified, or ownership was transferred etc, but the capability will indicate what you can do with the account

grizzled blaze
#

Ok

#

@ornate zodiac, so if a connected account have the ability "transfers", his account has enough capabilities to sell on our platform ?

#

Even if the account is still "pending" by Stripe according to his documents for example ?

ornate zodiac
#

Well you should be able to transfer to it

grizzled blaze
#

Ok, because we want to send an email "you are ready to sell on our platform" when the transfert capability is OK through the webhook

ornate zodiac
#

Can you share the event id of the event you received that has the combination you mentioned?

#

Just want to take a look to make sure I didn't miss something

grizzled blaze
#

I do not have an id for know.
I just want to know if the capability "transfert" is enough for a merchand to start a checkout session ?

#

We want to send an email to our merchand when it will be ok for him to shell products.
For now, we think about obj.capabilities.transfers == 'active'.
This is enough ?

ornate zodiac
#

Well, maybe, depends on other details -- with transfer capability you'd be using a destination payment, and it would only work within the same region for example

#

if you're operating within one region and using checkout with destination charges then yes, but you should test this all in test mode to confirm it works like you expect

grizzled blaze
#

ok