#giriraj3215
1 messages ยท Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- giriraj-default-pm, 17 hours ago, 17 messages
- giriraj3215, 2 days ago, 11 messages
- giriraj3215-renew-subscription, 2 days ago, 12 messages
hi! what does a "paid amount invoice" mean, could you explain an example of what you'd like to see?
eg. my user is adding a topup balance in my website like 25 dollars and then after some days he adds more 50 dollars.
I use payment intent for this https://stripe.com/docs/api/payment_intents
now i want to give user the invoice pdfs for this 25 and 50 dollars.
The product i have in stripe is Standard product price type is Customer chooses price.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
well it's not really possible, raw PaymentIntents are not Invoices and do not generate Invoice objects that have PDFs.
so what should i use for this use case
well I would say
- the customer does get email receipts https://stripe.com/docs/receipts ; maybe that's enough for the use case
- you can change your approach to process payments using actual Invoices instead https://stripe.com/docs/invoicing/integration
- you could create manual Invoices now and then mark them paid "out of band" https://stripe.com/docs/api/invoices/pay#pay_invoice-paid_out_of_band just to have an Invoice object for bookkeeping now.
should i follow thins link https://stripe.com/docs/receipts?payment-ui=checkout#paid-invoices ?
and my topup price is custom. like $25, $50 or etc...
well you could I suppose, but you said you are using PaymentIntents and not Checkout.
but that is an option as well yes, you could use Checkout with the Invoice creation feature, yes ๐
sure
ok let me try
how? can you show me?
Hi! I'm taking over this thread.
you want to create a Checkout Session without using a Price ID?
yes
I just shared the link of the parameter to set the amount