#stripetest_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1259836190731800628
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
There's no API that supports updating a tax ID. You just need to create a new one and delete the old one: https://docs.stripe.com/invoicing/customer/tax-ids?dashboard-or-api=api#managing
cool thank you ๐
using the post api cant we only update the tax id and keep the tax value as it is?
No, that endpoint doesn't accept those parameters. The SDKs just mirror our API spec, they're no different: https://docs.stripe.com/api/customers/update
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'd use https://docs.stripe.com/api/tax_ids/customer_create and https://docs.stripe.com/api/tax_ids/customer_delete
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.
Well the Dashboard has it's own internal API that is private so it may have a proxy endpoint that does that yes
But that's irrelevant really. The IDs are immutable, you need to create and delete
ok..thank for the help ๐