#roasten-Tax
1 messages · Page 1 of 1 (latest)
customer.tax_id.created and customer.tax_id.updated
I see, you can use this API to return a list of tax ID for a customer https://stripe.com/docs/api/customer_tax_ids/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and you can refer to this page for the list of supported tax ID types https://stripe.com/docs/billing/customer/tax-ids
let me see
so you dont have the supported tax id types as a API request?
*response
also what API do I use to Create/Update a tax_id to a customer?
I don't see the clear path here in the documentation
@tired sequoia
There's no API to get the list of tax ID types I'm afraid.
You can use this API (https://stripe.com/docs/api/customer_tax_ids/create) to create a Tax ID, and this (https://stripe.com/docs/api/customer_tax_ids/delete) to delete a Tax ID.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
There is no API to update a tax ID, you can just delete and create a new tax ID.
There is also a comprehensive doc for Customer tax ID https://stripe.com/docs/billing/customer/tax-ids
no problem, thanks