#MarcusStripe
1 messages · Page 1 of 1 (latest)
Hi there
1/ You reject an account
Stripe might disable it due certain requirements or it not meeting ToS or something
2/ Yes I believe so. You should be able to test this pretty easily
Not sure why you would want this functionality though if you are the one rejecting it
- Stripe - i am using payout - so my account would send money based on my business rules... so I dont really see much of a way that the connected account to break any rules?
- I am just trying to understand the general flow. And I also dont understand.. if STRIPE would be rejecting an accont for exampe because of a tos violation or fraud... why would they allow to udpate the account with new data and basically restarting?
or would it then just stay as REJECTED?
There is no way to direclty retrieve a status of REJECTED, right?
so far I am only checking the disabled reason, and it can be any of:
PENDING_VERIFICATION("requirements.pending_verification"),
PLATFORM_PAUSED("platform_paused"),
PAST_DUE("requirements.past_due"),
REJECTED_FRAUD("rejected.fraud"),
REJECTED_LISTED("rejected.listed"),
REJECTED_TOS("rejected.terms_of_service"),
REJECTED_OTHER("rejected.other"),
UNDER_REVIEW("under_review"),
LISTED("listed"),
OTHER("other");
so when the disabled reason is PENDING_VERIFICATION OR PAST_DUE - I think it is totally fine that my platofrm allows a new create onboarding link
but for the REJECTED ones... probably better not?
and for PLATFORM_PAUSED - it seems this happens if my application - me in the dashboard pause the connected account, so better keep it paused
Yep everything you have stated is basically true
LISTED means rejected as well AFAIK
UNDER_REVIEW - is that temporarily?
or PERMANT?
same question for "OTHER"
but is that under review by me - or by stripe, or both?
And would likely include an email to the account holder with information about why their account was disabled
By Stripe
so it would basically be like a pause?
account holder.. that would be me, right? I mean we are speaking of a UNDER_REVIEW of the conneted account
woudl stripe contact them in my name???
So if I get all correctly, it seems best is to map to 3 states:
PAUSED
DISABLED or FROZEN or UNDER_REVIEW
REJECTED
however maybe its even better to not disclose the account is rejected.. just flag it as paused to the end customer.. and then check with stripe manually how to continue
Overall what you are saying is correct. However, with Express Accounts the Connected Account user does interact directly with Stripe through their Dashboard. So it is good for you to prompt your Connected Accounts when they have requirements due or are disabled, but Stripe will also inform them of that through their Dashboard as well and the Connected Account user can work with our Support team if their account is disabled for some reason.