#tamil-selvan_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/1262369475315896320
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- tamil-selvan_api, 36 minutes ago, 44 messages
This is likely the issue:
This property can only be updated for accounts where controller.requirement_collection is application, which includes Custom accounts. This property defaults to a full service agreement when empty.
As it's an Express account, requirement_collection will be stripe I believe: https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I don't know what you mean. Certain fields are just immutable for certain account types, just how it works
How Transfers, Destination works in Stripe Express Connected Account?
You should set those fields on creation generally: https://docs.stripe.com/connect/service-agreement-types?connect-account-creation-pattern=typed#choosing-type-with-api
What specifically are you asking about?
stripe accounts create --type express -d requested_capabilities[]=transfers -d tos_acceptance[date]=1721023478 -d tos_acceptance[ip]=31.220.53.122 -d "tos_acceptance[service_agreement]"=recipient --api-key $testkey
{
"error": {
"message": "The recipient ToS agreement is not supported for platforms in US creating accounts in US. See https://stripe.com/docs/connect/cross-border-payouts for more details.",
"param": "tos_acceptance[service_agreement]",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_tPekEKzbvSUr1v?t=1721043228",
"type": "invalid_request_error"
}
}
Should I use type=custom, if yes what is the purpose of type express? I need to tell the client. They already told to use express type. That is why I'm asking.
Account type is irrelevant as per the error, it's a geographical limitation as per the error
Do you know to resolve this?
To resolve what? What specifically are you trying to do?
Using Custom Type I can create the test connected account. Why I am unable do to it in Express Type?