#IKTAR - invoice PDF
1 messages · Page 1 of 1 (latest)
Hey there, you mentioned an "invoice" -- do you mean a receipt?
And invoice only exists if you using the Invoice API to create one (or subscriptions etc)
There are no Invoices for Payment Intents
You can access the receipt_url for a one time payment on the Charge object within the payment intent:
https://stripe.com/docs/api/charges/object#charge_object-receipt_url
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 see, a receipt works too but there seems to be some missing crucial informations on the receipt.
Following Informations are missing:
- Tax Rate
- Missing Company Information of both sides
Aren't charges going to be deprecated?
That's something you'd need to track as part of your integration - tax rates aren't manages automatically with the payment intents API
I used charges and had to switch to Payment Intents
Ahh I see
The API & objects are used as part of the payment intent integration
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If you'd like to reach out to the team with details about your needs for Taxes with one-time payments, there is a beta email address you can refer to here:
https://stripe.com/docs/tax/faq#what-integrations-do-you-support
Ah I can see it, the Payment Intent has a Charge object which contains the receipt_url
But it's not in a PDF format
more like html css, is there a PDF option ?
Correct - its a web page only
No, there's no PDF of the receipt, you'd need to capture/create that yourself if required.
Is that link static and forever accessible ?