#bazylh
1 messages · Page 1 of 1 (latest)
Hi there
Are you asking specifically if there is a way to always request card_capability on your Connected Accounts?
Basically we use stripes connect account maker wizard, so itd be cool if we could flip something on the dashboard to make every made connect account have this turned on.
I'm not familiar with "stripes connect account maker wizard"
Our api doesnt touch accounts or capabilities currently.
Is that a third party?
No we have a button that takes users to stripe to make a connect account.
Its by stripe.
Yes.
Got it. And these are Express accounts?
Cool. So you can set the default capabilities you will request in your Dashboard here: https://dashboard.stripe.com/settings/connect
Hello! I'm taking over and catching up...
The Dashboard is the recommended way to do this, but you can also include suggested_capabilities[] in your OAuth link as well: https://stripe.com/docs/connect/oauth-express-accounts#specify-capabilities-for-an-account
How do we do this through the dashboard.
Using the link @lucid falcon provided above.
Do you need specific instructions, or did you find the setting?
Those are payment methods, not capabilities. What do you see if you go here? https://dashboard.stripe.com/settings/connect/express
Yep, that's correct.
Same response?
{
"detail": "Request req_fxF0dVXIdV30Vr: You cannot create a charge on a connected account without the card_payments capability enabled."
}
To clarify, this setting only applies to new accounts going forward, not existing accounts.
You can update the Account in question and request the capability you want. For card_payments, for example: https://stripe.com/docs/api/accounts/update#update_account-capabilities-card_payments-requested
Can i do this through the dashboard
I turned on card payments and now the account is restricted
You can do it though the Dashboard, yes. The account being restricted is expected; requesting new capabilities typically requires review and sometimes requires the account holder to provide more information.
Have you seen our Account capabilities guide? https://stripe.com/docs/connect/account-capabilities
"detail": "Request req_KV5lbFub2VJcQz: Your account cannot currently make charges. To find out why charge creation is currently disabled, look at the requirements.disabled_reason property on this account (/v1/accounts/acct_1LOQRTDGAsxGWWJC)."
}
What do you see in requirements.disabled_reason on the Account?
I don't know that it's displayed in the Dashboard, but you can see it if you fetch the Account from the API.
stripe.Account.retrieve("acct_1LOQRTDGAsxGWWJC").requirements.disabled_reason
'requirements.past_due'
Okay, so the account has requirements which are past due. The next step is to check which requirements are needed and fulfill them.
Okay, what's the status of the Account now?
No, using the API.
Oh i did that before i showed the response
So no change.
"alternatives": [],
"current_deadline": null,
"currently_due": [
"individual.address.line1",
"individual.verification.document"
],
"disabled_reason": "requirements.past_due",
"errors": [
{
"code": "invalid_street_address",
"reason": "The provided street address cannot be found. Please verify the street name and number are correct in \"829 North Bishop Street\"",
"requirement": "individual.address.line1"
},
{
"code": "verification_failed_keyed_identity",
"reason": "The identity information you entered cannot be verified. Please correct any errors or upload a document that matches the identity fields (e.g., name and date of birth) that you entered.",
"requirement": "individual.verification.document"
}
],
"eventually_due": [
"individual.address.line1",
"individual.verification.document"
],
"past_due": [
"individual.verification.document"
],
"pending_verification": []
}```
Heres the full object
Okay, so individual.verification.document is past due. You need to supply that.
But the link form never asks for that.
individual.address.line1 is also currently due, so you should likely supply that as well.
What is "the link form"?
How are you generating that link?
I'm not sure what you're referring to. Can you provide more details?
To clarify, I'm still not understanding where the link you're using to get to the form above is coming from.
@unborn iron Did you still need help?
I think we are good now.