#KumarArpan-Receipt
1 messages · Page 1 of 1 (latest)
receipt_url indeed lives under a Charge object
I think you would want to find the Charge object first, then find the receipt_url within
I want to get receipt url for the invoices which are manually paid
Is there any way?
So inside the Invoice object you would want to find the payment_intent first, then find charges inside payment_intent, then find the receipt_url
You can use expand when retrieve the Invoice
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.e. ['invoice.payment_intent.charges.data'], then inspect the data inside
Thanks for the help.