#littlepinkcookie_code
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/1347183887033565275
๐ 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.
- littlepinkcookie_code, 1 hour ago, 12 messages
End of the code is
automatic_tax: {
enabled: true,
liability: {
type: 'account',
account: provider.stripeAccountId,
},
}
Is there something I'm missing ? Like a way to say this given tax id X is now the default tax id of the express account Y ?
Sure! Here is the checkout session id that is currently opened on my screen : cs_test_b1GuwEf5WuGDRGgX8H7Qxun6FqOI53Fgq18Ut85im8iHadbVVBc9fbF4SC
Do you want me to finish the checkout to have better view ?
yes please
done
The Connected account I'm trying to use with the custom Tax ID is : acct_1QzcSRQlrB1Ff3AF
have you setup the tax settings of your connected account https://docs.stripe.com/api/tax/settings ?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you're also not passing transfer_data
I think a good place to start is here https://docs.stripe.com/tax/tax-for-marketplaces?charge-type=destination-charges
Learn about tax requirements for marketplace platforms and how to enable Stripe Tax to automatically calculate, collect, and remit taxes on transactions where the platform is liable. This guide includes integration steps for different payment methods and instructions for withholding collected tax amounts.
I didn't do the Tax Setting indeed, but I don't see where it's about having the Seller VAT number with it
let's step back 1 second before we proceed
reading this table
About the transfer_data, correct me if I'm wrong, but won't it do an automatic payout ? We need to hold the money for a given time before allowing them to collect it
do you consider your business to be a platform or a marketplace?
About the transfer_data, correct me if I'm wrong, but won't it do an automatic payout ? We need to hold the money for a given time before allowing them to collect it
that can be done whether by collecting a separate charge and transfer or by making the payouts manual...
do you consider your business to be a platform or a marketplace?
According to the definitions in this table, we are a platform. Professionals set up their page, where customers can book sessions one by one
To be honest the difference in this table is very thin and it's hard for me to give a firm answer
We are a booking platform, people are not buying material items, but they book sessions with sellers (i.e 1h Yoga, tomorrow at 14:30)
ok in that case yes it's more of a platform
then this is what you're interested in I guess https://docs.stripe.com/tax/tax-for-platforms?charge-type=Separate-charges-and-transfers
so the next question becomes how are you collecting the tax IDs from your connected accounts?
Via a form, happenning after the Express onboarding
your own form?
Yes
then you need to use the Tax Settings API as I suggested earlier
you can read more about it in the Set up section https://docs.stripe.com/tax/tax-for-platforms?charge-type=Separate-charges-and-transfers#set-up under Creating a tax interface within your platform
and don't forget to fill the default Tax ID as well
Got it, so
Step 1: express account onboarding
Step 2: via my custom form I'm populating the connected account Tax Settings & Tax ID
Step 3: modifying my checkout to comply with the doc you just sent above
Correct ?
and don't forget to fill the default Tax ID as well
Ah! That's the part I'm missing! I can't seem to find that part in the documentation
sorry my bad I mean tax code
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
if the product don't have any tax code
this would be the one used
Ah ok! And so to display the seller VAT number on the invoice, this is some setting I need to apply at Invoicing level ? Or should it be something populated at checkout stage that will be reflected on this invoice
Hey! Taking over for my colleague. Let me catch up.
And so to display the seller VAT number on the invoice, this is some setting I need to apply at Invoicing level ? Or should it be something populated at checkout stage that will be reflected on this invoice
It should be displayed in the invoice yes:
https://docs.stripe.com/tax/invoicing/tax-ids#tax-ids
Ok I see! Sorry for the chained very basic questions, I'm scareed about threads closing so fast that require starting a new one ๐
It sounds like I've got everything to start, I'll give it a try! Many thanks guys