#KumarArpan-Receipt

1 messages · Page 1 of 1 (latest)

ivory stream
#

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

worthy python
#

I want to get receipt url for the invoices which are manually paid

#

Is there any way?

ivory stream
#

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

#

i.e. ['invoice.payment_intent.charges.data'], then inspect the data inside

worthy python
#

Thanks for the help.