#matis11_83340

1 messages · Page 1 of 1 (latest)

jade geyserBOT
valid sapphire
#

hi! just trying to fully understand a get more detail. so a customer has a cart with 4 items in it for $50, $25, $20 and $5, sold by different stores. You want to charge the customer's credit card 4 times for each of those amounts all at once via an Invoice? Or something else?

mortal gate
#

I want that the user pay one time, but each stripe connect account creates an invoice to him

valid sapphire
#

what do you mean by "invoice" eactly? an Invoice object in_xxx in our API? a receipt ? an email, something else?

mortal gate
#

I'll try to rephrase

#

The user has to pay the total amount of the cart in one time, but i want that the total amount of the cart is the sum of the 4 Invoice created from each stripe connect account involved into transaction

valid sapphire
#

by "invoice" do you specifically mean a Stripe Invoice object in_xxx or are you using the term in general?

But in general there's nothing built-in for this. You'd just create your PaymentIntent for $100 and then send transfers (https://stripe.com/docs/connect/separate-charges-and-transfers) . You can't connect that directly in the API to Invoice objects on other accounts.

mortal gate
#

yes at the moment I implemented in this way, but I can't recover a receipt from connect involved to customer

valid sapphire
#

indeed, like I mentioned there isn't really a built-in solution, it's generally some logic you'd build yourself to email the customer an itemized receipt email with a breakdown of the merchants involved, something like that.