#Koja-tax
1 messages · Page 1 of 1 (latest)
Hi! When you create a transfer between two Stripe accounts, you can provide an amount, but no price or tax object. https://stripe.com/docs/api/transfers/create
What exactly are you trying to achieve?
Thanks for sharing the code, but could you explain what you are trying to do?
I want to send url to customer
On that form I need shipping and price object so platform can calculate taxes
but problem I have is that as Market user
I can't create Price object for Connected account
So you are a platform account, and you want to create a Price object for your connected accounts?
Yes
Can you share your account ID? It can be found in the top right corner of this page: https://dashboard.stripe.com/settings/account
acct_1JzMuiHJAVOEr1Vy
Thanks! Give me a few minutes to look into this.
If you want to platform account to create the price, but have the price on the connected account, then you could use the Stripe-account header as explained here: https://stripe.com/docs/connect/authentication
How to add it to PriceCreateParams
You wouldn't, you'd use new RequestOptions:
var accountOptions = new RequestOptions
{
StripeAccount = "acct_xxx"
};
priceService.Create(priceOptions, accountOptions)
Or something like that
Sure, np!