#mangle8582
1 messages · Page 1 of 1 (latest)
Hello can you tell me more about what " as a bussiness" means in this context?
Sure
Stripe Checkout has this checkbox
VAT Information. And i suppose the receipt is populated with the Bussiness Name so you can give it to the accountant
@sweet junco
I don't think the Payment Element supports that but will double check
The thing is i'm using Stripe in an Electron desktop app, so i can't use Stripe Checkout, but i need to add functionality for bussinesses. If Payment Elements doens't support that, can i do it custom somehow?
I think you can but will also need to check in to that
Maybe add metadata with the custom fields when creating subscription, something like that
Confirmed Elements does not have a pre-built version of this field. When making the tax calculation you can pass in their tax ID though https://stripe.com/docs/api/tax/calculations/create#calculate_tax-customer_details-tax_ids
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I'm not making the Tax calculation, i have a fixed Price and i will pay the VAT with my accountant
I believe i need bussiness name so i can add it to the receipt of the user
So he can use it to deduct his VAT of company to their state
Do you have the ID of a customer that you completed a Checkout Session like that with? I can check to see where Stripe stores it
I think it may be in this field on the Customer https://stripe.com/docs/api/customers/object#customer_object-tax_ids
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I don't have checkout session because i'm using Electron, i have custom React Payment Element
Ah I thought you had created it to test the functionality outside of the flow you intent to use
No, i'm not sure how to do it with Payment Element and custom, because i'm limited by Electron and desktop app, and i cannot redirect the user inside the App to a stripe checkout
Where did you get that screenshot from? Having trouble getting the checkbox to show
The receipt works good, but i need to add the Business name and the Bussiness Number to the receipt that comes on email, so that user can deduct his VAT
From an app i found on the internet
hello