#taviksha-akar_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1280398785066962944
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- taviksha-akar_api, 5 days ago, 21 messages
- taviksha-akar_code, 5 days ago, 23 messages
Invoice PDF will always show amount due regardless whether the payment has been made
You should check the invoice status for the payment outcome: https://docs.stripe.com/api/invoices/object#invoice_object-status
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But we need to show the latest status of invoice in pdf so is there any way to do so ?
This channel is for developers and technical integration questions. For information display in the invoice PDF, our Support https://support.stripe.com/contact will be able to help
Find help and support for Stripe. Our support site 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.
Ok thanks
Can you please help me with one more query - How to record offline transactions or payments on a subscription ?
I'd recommend listening to invoice.paid or invoice.payment_failed for the payments on the subscription: https://docs.stripe.com/billing/subscriptions/webhooks#active-subscriptions
No, this will listen to the events made on subscription. But my case is, sometimes the customer pays us offline. So we need to record that transaction in stripe in the particular subscription.
So that we can see the payments made by customer on the subscription.
What do you mean by offline? Do you mean paying out of band, i.e. not making payment using Stripe? If so, the payment can be marked as paid out of band in Dashboard: https://support.stripe.com/questions/marking-an-invoice-paid-out-of-band; or using Invoice Pay API: https://docs.stripe.com/api/invoices/pay#pay_invoice-paid_out_of_band
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But this will require invoice id to pay the invoice, I am saying I need to record the transaction that is made externally from the stripe panel I just need to record it.
Stripe will only be able to support the payment made out of band when an invoice is created for a subscription. If no invoice is created, then any payment made outside of Stripe can't be recorded
Ok thanks.