#sumitp07
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.
- sumitp07, 2 days ago, 35 messages
👋 How can I help?
I have integrated custom stripe customer portal using stripe API, so in that I am providing edit billing address details to customer, I want to provide the edit tax id functionality to customer? So I can I do this?
depend upon the updated address I want to ask customer to edit tax id
Updating Tax ID can be configured in https://dashboard.stripe.com/settings/billing/portal under Customer information section
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I have not used the stripe customer portal, I have developed my own customer portal using stripe APIs, and to edit customer billing address I am using stripe address element.
Ah I see! It's possible to update the Tax ID using API with the guide here: https://stripe.com/docs/billing/customer/tax-ids?dashboard-or-api=api
Is there any stripe element to get input of tax id to update
like address element and card element
Stripe doesn't have an element for Tax ID. This should be collected by your own form and update it via API
the updated tax id should apply the change of tax on the next month billing or current one as well.
?
It'll be reflected in the next invoice. Any existing invoice that has been created won't be updated to the new tax ID
so is it required to delete old one or not?
Yes, it's been explained in the doc:
To update a tax ID, delete the old ID and create ​​another one.
is there any API to retrieve tax id type depend upon the country?
I'm afraid we don't have an API for this, but you can refer to the guide here: https://stripe.com/docs/billing/customer/tax-ids#supported-tax-id
this updated tax id need to attach with subscription or need to update at customer level only?
Updating at customer level should be sufficient. I'd recommend testing in test mode to ensure that it's aligned with your expectation
Test clocks https://stripe.com/docs/billing/testing/test-clocks can be used to advance the time and check if the new invoice picks up the updated tax ID
ok