#MarkoBoras
1 messages · Page 1 of 1 (latest)
Stripe Invoice also supports Taxes, but even if you have your own service and pre-calculated amount, you can still create a raw Stripe Invoice and download its PDF https://stripe.com/docs/api/invoices/object#invoice_object-invoice_pdf or use its Hosted Invoice Page https://stripe.com/docs/api/invoices/object#invoice_object-hosted_invoice_url (this one is well desinged)
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 am using Stripe checkout with tax but I legally need to create fiscalized invoice and send it to user. Is it possible to connect Stripe with Croatia's tax administration office?
Also need to checkout this
- When user pays successfully in checkout I am seeing in dashboard automatic creation of invoices
- Can I when I get some legal numbers that I need to put on invoice update existing invoice and then send it to customer?
👋 taking over for my colleague. Let me catch up.
are you talking about subscription invoices? or one-offs?
subscription invoices
sorry for late answer
so this is the flow
-> User selects plan in my app
-> Redirect to checkout
-> Pays
-> I am issuing fiscalized invoice in Croatia's tax administration office
Question is can I somehow retrieve and update bill for that user and insert some dynamic data that I must provide to customer and then send that pdf to customer on e-mail
do you mean this https://stripe.com/docs/invoicing/customize#custom-fields ?
sec to read
yeah
Add custom fields to enhance your invoice PDF documents and help you comply with your business practice and tax reporting obligations. Custom fields allow you to provide up to four key-value pairs ​​that display in the invoice header. You can set up to four custom field key-value pairs in the Invoice Editor or with the Invoices API.
Some common uses for custom fields are:
Purchase Order (PO) numbers
Contractor numbers
Tax compliance
I need this
so can I do
- After I receive fiscalized bill from tax's administration office
->Can I retrieve and update bill/invoice for that user and insert some dynamic data that I must provide to customer and then send that pdf to customer on e-mail
I don't need to send invoice immediately after payment because first I need to create it in tax administration office and after they send it to me then I need to send to customer Stripe's PDF
If I'm understanding you correctly, I think it's better to handle the invoice generation outside of Stripe