#Killian Quoniou
1 messages · Page 1 of 1 (latest)
:question: @fleet plume Have a non-technical question, account issue, or need one-on-one support?
We wish we could help, but this community is focused on developers and technical discussions. Our support team will be able to assist you better than we can: https://support.stripe.com/contact
BTW I have another question more "technical". Is it possible when I create an invoice via the API to specify that the invoice is created by a company representative to a company ?
In fact in my case my client is the representative and the created invoices need to specify that invoices created for a connected account is created by my client and not by the company
I'm not sure I understand. You have a platform and a connected account, and you want to create the invoice on the connected account directly?
let me give an example
my client is company A, user B have a connected account, user C buy something to user B. Then user B create an invoice for user C but in fact user B don't create it, it's automatically created by my client A. So I need to specify on the invoice that it's generated by my client A in name of the user B
it's a mandate
A is the Stripe platform account, B is the connected account, and C is the end user?
yes for example
B and C are users of the website of my client A
the website is a kind of marketplace where A is my client who requested us to create its website. User B is a company who uses the website to sell something. User C is a lambda user like you and me who purchase something
What is "of my client A"? What is A? yourself the platform? A connected account? An end user?
the platform
When A (the platform) creates the invoice, you want the invoice to look like it was created by B (the connected account)?
If so, that's possible by using the Stripe-Account header when creating the invoice: https://stripe.com/docs/connect/authentication
I want to have this thing on the invoice : "Invoice issued by A for B"
You can add custom text to the invoice with custom_fields: https://stripe.com/docs/api/invoices/create#create_invoice-custom_fields
If you want to add custom text, then yes it's the solution.