#Shikha
1 messages · Page 1 of 1 (latest)
hello! you may want to take a look at this page : https://stripe.com/docs/connect/service-agreement-types
Yes I read this
While following recipient service account
T said the application doesnt have required permissions for parameter tos_acceptance on account..
can you share the request id?
can you share the code and indicate the specific line that you're getting an error? Also, the exact error message returned?
Ok
Exception snap
This is only for US connected acc
Because add funds is not enabled
I want to add funds yo do a manual payput to a Us Account
Manual payout
can you share the code snippet?
Sure
var options = new AccountUpdateOptions { Settings = new AccountSettingsOptions { Payouts = new AccountSettingsPayoutsOptions { Schedule = new AccountSettingsPayoutsScheduleOptions { Interval = "manual" }, }, }, }; var service = new AccountService(); var obj = service.Update("acct_", options); var options1 = new PayoutCreateOptions { Amount = 1, Currency = "usd" }; var requestOptions = new RequestOptions(); requestOptions.StripeAccount = "acct_"; var service1 = new PayoutService(); var obj1= service1.Create(options1, requestOptions);
is there a reason why you want to set the recipient TOS agreement on the connected account? For context, https://stripe.com/docs/connect/cross-border-payouts - this feature only works if the platform is a US account
your platform account is based in the UK
I want to do a manual payout to a US based connected account...team askef to go with cross border payout using service agreement
How can I enable add funds for a US based connected account?
Can I add funds through API side? Because add funds is disabled.
can you share more on your business model?
We have a travel app which has UK account with stripe.
Host publish their stay in this app and receive payouts through stripe
Our host has accounts with Us Uk and otger countries alsp
Now we want to do a manual payout through stripe for one of the host who has US account
who do you expect to be the merchant displayed on the customer's credit card - your platform or the connected account?
you are collecting payments from customers through Stripe also right?
Yes we collect payment from stripe
On cc ideally it should show that payout is received from JSTAY qhich is our app
We collect payments and we do payouts both
There?
Is that you are collecting Payment separately from the Connected Account? ie. collect directly from the customer?
If that's the case, the fund never touches your Connected Account balance. Generally you need fund inside the balance first to be able to initialize a Payout from it to your Connected Account's bank account
There are multiple funds flow can do that, and it depends on "who do you expect to be the merchant displayed on the customer's credit card" as my colleague mentioned
Note this is on the customer's credit card, who is paying/renting from the host
This is the first branching point. Once you specify it, we can continue to advise how to move fund into your Host's Stripe balance to be able to create a Payout for them
How can I add funds inside
I just want to know how to enable add funds for a Us Based connected account?
You cannot "add funds" for a US based connected account from a UK platform account. You can have funds on the connected account is to create a destination charge using on_behalf_of set as the connected account : https://stripe.com/docs/connect/destination-charges. You should use the test card that bypasses the available balance.