#jtishler
1 messages ยท Page 1 of 1 (latest)
Hello ๐
What field are you looking at exactly?
customer_address
If you look at the customer object, it doesn't have any billing details attached
https://dashboard.stripe.com/test/customers/cus_MQp6KqdVXBzTSn
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
is that because i used the stripe test card 4242...
customer_address field on invoices grabs information from customer.address field.
I don't think it will grab the information from PaymentMethod billing details
https://stripe.com/docs/api/invoices/object#invoice_object-customer_address
https://stripe.com/docs/api/customers/create#create_customer-address
Not directly on the invoice, no. But you can go from the invoice -> customer -> payment method -> billing address
If you have a default payment method on subscription, then yes.
If you don't then its about the same effort
so you could go subscription -> payment method -> billing address
Yes, subscription -> default_payment_method -> billing address (only if you set a default on the subscription while creating the subscription)
gotcha thank you!
NP! ๐ Happy to help