#connect-with-custom-type_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1272784719343259658
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there, as the error message explained, you need to enable transfers capability for that account
https://docs.stripe.com/connect/account-capabilities#requesting-unrequesting this is how you request the capability
{
"id": "transfers",
"object": "capability",
"account": "acct_1PnCEV2cjf0uLYug",
"future_requirements": {
"alternatives": [],
"current_deadline": null,
"currently_due": [],
"disabled_reason": null,
"errors": [],
"eventually_due": [],
"past_due": [],
"pending_verification": []
},
"requested": true,
"requested_at": 1723522880,
"requirements": {
"alternatives": [],
"current_deadline": null,
"currently_due": [
"individual.ssn_last_4"
],
"disabled_reason": "requirements.fields_needed",
"errors": [],
"eventually_due": [
"individual.ssn_last_4"
],
"past_due": [
"individual.ssn_last_4"
],
"pending_verification": []
},
"status": "inactive"
}
Here is response I am getting
"status" is "inactive".
The next step is to create an account link and complete the onboarding to collect necessary document for this account
I do not want to provide onboarding. All need to handle by platform.
As per my requirement - I want to transfer funds to connect account that this stage. On Connect account holds the funds as there is no payout capabilities. So once connect account received funds then platform want to get their payout detail.
to enable payout capabilities.
Ok, if you don't want your connected account to go through Stripe onboarding to collect the necessary information, you need to collect these info on behalf of the connected account , and use API to update the account https://docs.stripe.com/api/accounts/update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
My question - Without SSN ID document and External account detail. Can platform transfer funds to connect account? As I know these documents are required at the time of payout and payout is disabled as now. But I want to transfer funds from platform to their connect account even my connect account is not verified yet.
https://docs.stripe.com/connect/required-verification-information The required information may vary based on the country. You should this page to check the required info needed for the connected account
I have provided all neccessory information that needed except SSN number. Is this required for US before transfer funds to their connect account?
Question, Can connect account received funds even their account is not verified? These are the answer, I am not getting in any stripe document.
ok