#jarrett
1 messages · Page 1 of 1 (latest)
Hi there
The Customer billing details you see in the Dashboard correspond to the customer.address properties: https://stripe.com/docs/api/customers/update#update_customer-address
there is no email there though
That said, that is different from the billing details associated with the PaymentMethod itself
The email is a separate property for the Customer: https://stripe.com/docs/api/customers/update#update_customer-email
Ah I see, thanks for clarifying. That is the invoicing.email_to property which is a Dashboard-only property.
Can you tell me more about what you are trying to accomplish here?
having a customer be able to set the billing email
What is the billing email going to be used for?
billing emails
like a large company has a billing department which needs to get all invoices
but isn't the actual customer's email
Got it. We don't currently support sending Invoices to multiple emails via the API. You can only do this via the Dashboard. We hope to build support for this in the future via the API.
So if you want to just associate the email addresses but send the invoices yourself, then I'd recommend using metadata for that.
what field would we set on the invoices?
In order to...?
like we cant set a billing email on the invoices either?
Hi there. Taking over for bismarck as they have to step out
bismarck was suggesting you set the billing department's email in the metadata field: https://stripe.com/docs/api/invoices/create#create_invoice-metadata
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
The customer's email is the only one supported from the api