#Reus-billingdetails
1 messages · Page 1 of 1 (latest)
@bold berry which exact fields in the JSON are you looking at in each case?
also can you share the two evt_xxx event IDs you're looking at?
evt_3JZBaOC06nCvwSqt199Xu9B7 - it doesn't contain
evt_1JZBaRC06nCvwSqtLinXN1qo - it contains information about the customer
evt_1JZBaRC06nCvwSqtLinXN1qo - it contains information about the customer
sure, but where? For example it has an address incustomer_shipping[address](https://stripe.com/docs/api/invoices/object#invoice_object-customer_shipping) but that's not the same thing ascharge[billing_details]
there are multiple place an address can be. The billing_address on the charge is the billing address of the customer's payment method, but the customer can also have their own address, or a shipping address, and those are all different and set differently.
So really it depends overall what you're trying to do and how you integrate!
for example you manually added a shipping address to the customer in https://dashboard.stripe.com/logs/req_Lfo6byeBVSdLSa but you don't have a billing address on file for them.
If you want the shipping address when handling charge.suceeded you can retrieve the Customer object(the charge has a customer field with the ID) and read it from there!