#hakiros-platform-design

1 messages · Page 1 of 1 (latest)

cedar canyonBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

dapper iron
#

Hello 👋
What docs have you looked at and what resources have you referred to so far?

Can you describe me how will it look like and whether its possible to somehow integrate stripe dashboard, that it will automatically send all invoices to saldeo system?
that is quite an open question. It's up to you on how you want it to be built.

cedar canyonBOT
#

hakiros-platform-design

upper seal
#

I mostly want to know whether its possible to make stripe send all invoices to banking system automatically, to saldeo for my client purpose.
I have tested some connected account payments
const session = await stripe.checkout.sessions.create({
mode: 'payment',
line_items: [
{
price_data: {
currency: 'pln',
unit_amount: 500,
product_data: {
name: 'name of the product'
}
},
quantity: 1
}
],
payment_intent_data: {
application_fee_amount: 20,
transfer_data: {
destination: 'acct_1O3FKQPdti9FBpkZ'
}
},
success_url: 'https://example.com/success',
cancel_url: 'https://example.com/cancel'
});

like this but I want to know whether it will create separate invoice for my client, buyer and seller? Or how platforms like this usssualy deal with taxes?

dapper iron
#

Saldeo seems like a third party platform. We don't know anything about it and without knowing how they expect the invoices to come in, I can't say if its something we can support.

like this but I want to know whether it will create separate invoice for my client, buyer and seller? Or how platforms like this usssualy deal with taxes?
The code you shared above is for one-time payments (not subscriptions) so I'm confused as you mentioned subscriptions in the initial question.

We have Stripe Tax that calculates the taxes automatically. Would recommend giving this a read as it explains everything:
https://stripe.com/docs/tax

upper seal
#

we have subscription which is easy case because it fully goes to my client and we have normal payments (like the code above)
where you have buyer, seller, and 20% money goes to my client, website owner

dapper iron
#

Gotcha. I believe Stripe Tax does support Stripe Connect scenarios too.