#johnnytomcat
1 messages · Page 1 of 1 (latest)
Express
What charge flow are you using?
I create a payment method, then create a customer with a subscription attached
On your platform?
Are you using destination charges?
Like are you setting transfer_data.destination?
I dont remember the name of the flow but um setting application_fee_percent
This is what im doing
Ah okay so Direct Charges
Yes direct charges
Gotcha, yeah so Direct Charges aren't really recommended with Express. You can't actually affect an Express account's settings like email_receipts.
And with a Subscription you can't set receipt_email. The workaround here, is to actually update the Charge to set a receipt_email after it is created: https://stripe.com/docs/api/charges/update#update_charge-receipt_email
are destination charges the recommend approach?
Yeah for Express/Custom
So the current work around would be to update all the charges triggered by a subscription payment? with like a webhook or something
Yep
You would listen for charge.succeeded
And that would contain the charge and then you update the receipt_email with the corresponding email and that triggers the email to be sent
Gotcha, and switching to destination charges, would that change how emails are handled or would this same setup be needed?
With destination charges all the charges take place on your own platform
So you use your platform settings to dictate receipts
Would the email inherit the connected accounts branding? or would it be the main account?
No just your platform in this case
And if i wanted it to be the branding of the connected account (name, contact email/phone), could that be handled via stripe?
Currently with Subscriptions, no. You need to use on_behalf_of to make this happen which isn't supported by default. You can reach out to our Support team (https://support.stripe.com/contact/login) and see if your account would be eligible for this feature. Then the Subscriptions would use your Connected Account branding while existing on your platform.
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
ok thank you for the information!