#tvanantwerp_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always 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/1414704371714756658
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
I don't know why we don't show the possible values within that dictionary though
I'd assume it's the same ones on the tax calculation object: https://docs.stripe.com/api/tax/calculations/object?api-version=2025-08-27.preview#tax_calculation_object-tax_breakdown-tax_rate_details
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yeah, that's what is confusing me. I don't really know what the tax_rate property is.
The OpenAPI spec just says tax_rate_details contains these properties:
"tax_rate": {
"maxLength": 5000,
"type": "string"
}
Ah tax_rate would be a tax rate stripe id
ie an id belonging to a tax rate object within stripe: https://docs.stripe.com/api/tax_rates/object?api-version=2024-11-20.acacia
Gotcha! I guessed it probably was, but I wasn't certain. Thanks for verifying!