# Account tax IDs Store and render your tax IDs with Stripe Invoicing. Need another tax ID type? Request additional tax ID types by emailing [Stripe support](https://support.stripe.com/contact?subject=Request). Displaying your tax IDs on *invoice* documents is a common regulatory requirement. With Stripe, you can add up to 25 tax IDs to your account. Both the account and [customer tax IDs](https://docs.stripe.com/invoicing/customer/tax-ids.md) display in the header of invoice and credit note PDFs. In the [Invoice template](https://dashboard.stripe.com/settings/billing/invoice), you can: - Select default tax IDs to appear on every invoice and credit note PDF. - Define a list of tax IDs to appear on a specific invoice. You can’t add, change, or remove account tax IDs after an invoice is finalized. ## Managing account tax IDs You can add and delete tax IDs using the [invoice settings](https://dashboard.stripe.com/settings/billing/invoice) page in the Dashboard. After you add a tax ID in the Dashboard, you can set it as the default tax ID for every invoice and credit note PDF. Tax IDs are immutable—you can’t change the country and ID after you save the tax ID to your account. Additionally, you can add and delete tax IDs with the [create](https://docs.stripe.com/api/tax_ids/create.md) and [delete](https://docs.stripe.com/api/tax_ids/delete.md) endpoints. ### Adding and removing IDs Visit the [invoice settings](https://dashboard.stripe.com/settings/billing/invoice) page. Click the **Tax** tab and add a new tax ID or remove an existing tax ID: ![Manage tax IDs in the Stripe Dashboard.](images/billing/account-tax-ids/manage-add.png) Manage account tax IDs in the Dashboard You can add and delete tax IDs using the tax ID [create](https://docs.stripe.com/api/tax_ids/create.md) and [delete](https://docs.stripe.com/api/tax_ids/delete.md) endpoints. To update a tax ID, delete the old ID and create ​​another one. The following example creates a tax ID: The following example deletes a tax ID: ### Setting default tax IDs On the [invoice settings](https://dashboard.stripe.com/settings/billing/invoice) page, click the **Tax** tab and locate the tax ID you want to set as the default. Click the overflow menu (⋯), select **Set as default**, and click **Save**. ![Set default tax ID in the Stripe Dashboard.](images/billing/account-tax-ids/manage-default.png) Set default account tax ID in the Dashboard ​​After you set a tax ID as the default, you can see a label in the tax information box: ![A default tax ID in the Stripe Dashboard.](images/billing/account-tax-ids/manage-default-set.png) A default account tax ID in the Dashboard ## Displaying tax IDs on invoices Stripe automatically pulls your [default tax IDs](#default-tax-ids) during invoice finalization. To override the default and display multiple tax IDs on invoices, you can set tax IDs in the Dashboard or by using the API. To learn more about taxes and invoices, see [Taxes](https://docs.stripe.com/invoicing/taxes.md). You can set a list of tax IDs in the Dashboard using the Invoice Editor. ​​You can’t modify account tax IDs after an Invoice has been finalized. In the Invoice Editor, scroll down to the **Advanced Options** section. Click the checkboxes to toggle which tax IDs ​​to display on that invoice. To remove tax IDs from the invoice, uncheck the boxes. ![Tax ID invoice settings in the Stripe Dashboard](images/billing/account-tax-ids/invoice-editor.png) Advanced Options section in the Invoice Editor After you add a tax ID to your account, you can use the API to specify up to 25 tax IDs with the `account_tax_ids` parameter for creating [invoices](https://docs.stripe.com/api/invoices/create.md#create_invoice-account_tax_ids), [subscriptions](https://docs.stripe.com/api/subscriptions/create.md#create_subscription-invoice_settings-account_tax_ids), and [subscription schedules](https://docs.stripe.com/api/subscription_schedules/create.md#create_subscription_schedule-default_settings-invoice_settings-account_tax_ids). You must pass a list of object IDs to the `account_tax_ids` parameter. The following example sets `account_tax_ids` during invoice creation: ​​You can use the update endpoints for [invoices](https://docs.stripe.com/api/invoices/update.md#update_invoice-account_tax_ids), [subscriptions](https://docs.stripe.com/api/subscriptions/update.md#update_subscription-invoice_settings-account_tax_ids), and [subscription schedules](https://docs.stripe.com/api/subscription_schedules/update.md#update_subscription_schedule-default_settings-invoice_settings-account_tax_ids) to add, change, or remove account tax IDs. The following example sets `account_tax_ids` on an existing subscription: ## Supported tax ID types Currently, Stripe Invoicing supports the following tax ID types in the following regions: ## See Also * [Connected account tax IDs on invoices](https://docs.stripe.com/connect/invoices.md#account-tax-ids)