#wizjr.
1 messages · Page 1 of 1 (latest)
Can you share the ID (req_xxx) of the failing API request? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
You need to use the correspodning enumeration, not the example ID (i.e. eu_vat)
req_MyASzU8RJv7uyx
That then tells the Invoice to use the corresponding EU VAT ID set on your account
I am entering DE123456789, is this wrong?
So I pass eu_vat to the invoice? but where do I pass the actual vat id?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I would like to do it in the backend using the InvoiceCreateParams.Builder in java, not in the dashboard. How can I do it there?
You cannot with account_tax_ids
How can I do it then, I want to add a vatid to the invoice from my backend, where could i add it?
Well, is it the tax ID for you (the merchant) or your customer?
Then that's not possible to set on a per Invoice basis. Your account/template needs to be pre-configured with the array of IDs via the Dashboard, then you can use the account_tax_ids parameter to pull in the relevant ones
so if i had the vatid with DE123456789 configured in the dashboard, i could also pass it in account_tax_ids?
You would pass the corresponding enum that matches the desired ID. So for example, if you set an EU VAT ID in the Dashboard to DE123456789, then you'd pass eu_vat_id to account_tax_ids
ok i see, so there is no option to pass the vatid directly, without using the dashboard for the merchant?
No