#shaon
1 messages · Page 1 of 1 (latest)
Hit here,
Could you you please elaborate more ?
i'm using stripe.Invoice.modify and sending up on_behalf_of
should i also send up stripe_account also?
Hi! I'm taking over this thread.
What is your end goal? Creating an invoice on a connected account?
If so you just need to create an invoice using the Stripe-Account header https://stripe.com/docs/connect/authentication
yes creating an invoice
but i'd like to do it on behalf of our stripe connect customer
so i'd like their branding to be used
In that case I think you have two options:
- Create an invoice using direct charges. The invoice will be created on the connected account, so it will have the connected account branding https://stripe.com/docs/connect/invoices#direct
- Create an invoice using destination charges with
on_behalf_of. The invoice will be created on the platform account, but will use the branding of the connected account https://stripe.com/docs/connect/invoices#destination
so if i use direct charges, the stripe account just needs to be passed up?
and the branding will be automatically applied?
Yes because direct charge means creating the invoice directly on the connected account. So all connected account settings will apply.