#jan123459371
1 messages ยท Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- jan123459371, 5 days ago, 17 messages
Can you elaborate? Also a screenshot would help
which screenshot :D.
I need to know how I can add a tax ID on a stripe connect express account.
i can specify tax-ids ("txi_...") on creating an invoice. But for stripe connect express accounts I need to know how I can create tax ids for. the particular account
Screenshot of the page you're looking to add the tax ID to.
afaik it depends on the type of account.
If business_type is company then you can set it under company.tax_id
https://stripe.com/docs/api/accounts/update#update_account-company-tax_id
looking tho
That's the API endpoint I linked above
Update account API
txi_xx tax IDs are for customers
are you looking to add VAT IDs/Company Tax ID to invoices?
Looks like there's a beta for this
https://stripe.com/docs/invoicing/connect#account-tax-ids
I'd recommend filling out the form
curl https://api.stripe.com/v1/accounts/{{CONNECTED_ACCOUNT_ID}}
-u "sk_test_51NDoCcFbb57yWjuKcWJEmP0DfjJg5BZ2GqDTUAGuQg4xeLccsCnXTBCyI0WYwcYDGqSaxUa5jRzWdyse7WSniKB700sLwAFpUR
:"
-d "settings[invoices][default_account_tax_ids][0]"=atxi_123
-d "settings[invoices][default_account_tax_ids][1]"=atxi_456
the "atxi_456" is the id for the Tax-ID of an account. There should be a way which is not beta to create that ๐
invoices under settings parameter on the account is a beta feature.
The other option is what I suggested above where you set the Tax ID directly on the connected account by calling the Update account API endpoint
https://stripe.com/docs/api/accounts/update#update_account-company-tax_id
Then when you create an invoice, you'd use on_behalf_of parameter
https://stripe.com/docs/api/invoices/create#create_invoice-on_behalf_of
thanks so far