#L2_Supreme | TheYoloDAO-Tax in Connect
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
yes you can create a tax rate for your connected account https://stripe.com/docs/api/tax_rates/create by adding the stripeAccount parameter to the header
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
as described here https://stripe.com/docs/api/connected_accounts
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So like this right?
Stripe::TaxRate.create({
display_name: 'VAT',
description: 'VAT Germany',
jurisdiction: 'DE',
percentage: 16,
inclusive: false,
}, {stripe_account: '{{CONNECTED_STRIPE_ACCOUNT_ID}}'})
Pretty much the same as with creating the checkout session for the connected account I am just now realizing ๐ if thats the correct way above