Reputation: 901
I see no solution or even any internet discussion for a fairly obvious problem that is sending Stripe invoice/receipt to a customer, to several email adresses at once.
Docs show single email per customer object (what is obvious and clear) https://stripe.com/docs/api/customers/object though dashboard shows promising field as "Billing emails" - it's not even present on customer object - googling that doesn't render anything useful too.
The questions is - what if my customer wants invoices/receipts sent to multiple departments and we're stuck with single email per customer? Thank you in advance.
Upvotes: 9
Views: 4358
Reputation: 1736
I confirmed with Stripe customer support (today, July 29, 2022) that as of right now, this is a "Dashboard only feature".
There isn't currently a way to do this via API.
Upvotes: 8
Reputation: 154
For those wondering how something so simple yet so obviously needed can be this difficult to do (and find online), here's a run down for the UI.
I have no idea how to do this via API unfortunately, but I'm betting it's similar to the dashboard API request which is a POST to the customer object and sets invoicing[email_to]
for the main account email and invoicing[email_cc]
both as arrays of emails.
Now for the UI:
Go to your Customers in the Stripe Dashboard.
Click on the customer you want to edit. Then click on Actions. Under Actions click on Edit Information.
Then under Billing Information uncheck the box and enter as many emails as you need.
Upvotes: 6