#michael_unexpected
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/1296061686490595368
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi! to be clear we're talking about this https://docs.stripe.com/billing/customer/tax-ids#validation-webhooks ?
yes
ah no, apparently we're not, this is about KYC connected account IDs, not Customers.
is there a difference for customers and connected accounts?
quite possibly yes, maybe we don't validate them for this use case. I can't immediately find any docs about this, do you have any that you are reading?
the doc that you have sent
that doc is for end-customer tax IDs though, which is a different thing
When we try to retrieve the tax_id we set account type to "account" and set the connected account id for the account
<stripe tax_ids list -d "owner[account]=acct_1QAUF3QkVwz7Oje5" -d "owner[type]=account" >
this is IDs for a connected account. The use case is for supplying an ID that appears on Invoices that connected account merchant issues to their customers. From what I can find this is expected and we don't verify these IDs the same way we do for end-customers.
We tried to create an connected account with a de_stn id type, and we got an error "Invalid value for de_stn.". So this implies to me, that there is a validation process by stripe?
Well we valid the format (https://docs.stripe.com/tax/invoicing/tax-ids#validation) but only whether the ID is actually valid is certain scenarios
But yes verification is not something that is supported for account level IDs as my colleague noted
What is it specifically you're trying to do?
thanks for clarification. Just one last question: We use <stripe.taxIds.create> <const taxId = await stripe.taxIds.create({
type: taxIdType, // The type of tax ID (e.g., EU VAT)
value: taxIdValue, // The actual tax ID value
owner: {
type: "account",
account: connectedAccountId,
},
});> however, we dont find where the taxId is displayed in the dashboard under connected account?
They're here I believe: https://dashboard.stripe.com/settings/billing/invoice
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
ok, thanks a lot! Thats it for now