#kurisu
1 messages ยท Page 1 of 1 (latest)
Hi ๐ I don't think you want to. Creating an Invoice directly on a Connected Account will cause that Invoice to use a Direct Charge approach, which isn't recommended for use with Express accounts.
ok, so you recommend creating invoices (always?) on the plattform account?
When working with Express or Custom connected accounts, yes.
ok thx.
can we then brand that platform invoice accourdingly to the connected account. (logo, adr, company)
wether dynamically in code or creating invoice templates for different connected acounts
I think you're looking for the on_behalf_of parameter, which causes the Invoice to inherit the branding and support details of the Connected Account:
https://stripe.com/docs/api/invoices/create#create_invoice-on_behalf_of
i already did that, but this does not work. no logo, no adress.
Did you set the branding info for your Connected Account first? Or check to see if any branding settings were set?
a college of mine did that on the connected account with ID acct_1MVuJn4KqOcqQ7Dz
Can you share the ID of the request where they did that? I'm not readily seeing any branding settings being set for that account.
oh, then seams there to be the source of the failure. she told me that she did that, but i don't know how one create invoice templates / profiles on the dashboard or do you recommend another way?
You don't create different Invoice template/profiles, that is not a concept within Stripe Billing.
ok. so i create invoices on the platform acount refering the conncted account with on_behalf_of. but on the created invoices is no profile info (seller adres, logo)
Because you first need to set those details on the Connected Account:
https://stripe.com/docs/api/accounts/update#update_account-settings-branding
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and the support details in the business_profile:
https://stripe.com/docs/api/accounts/update#update_account-business_profile
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
i'll try that. many thanks !!!
Happy to help! Let us know if that doesn't work or you run into problems when trying to do that.