#joseamica
1 messages ยท Page 1 of 1 (latest)
Hi yeah that's totally expected. With Express and Custom accounts, you use destination charges. With destination charges, all objects (payments, customers, etc, etc) get stored on the platform account. Just funds are transfered to the connect account
You can read more here: https://stripe.com/docs/connect/destination-charges
So, its better to migrate to a standard account right?
My customer is complaining about the information, and the receipts
๐
Sounds like it may be. But you'll want to review the comparison here just to be sure: https://stripe.com/docs/connect/accounts
Thank you very much, can I ask something it might be stupid question. But on the invoice_creation, I want to send to the customer all the dishes they ordered and paid for
Ofcourse this dishes data comes from my db. But how I can make a list of products? Using invoice_data?
How are you accepting payments?
Creating invoices via the api?
Using Checkout sessions?
checkout sessions
const session = await stripe.checkout.sessions.create({
mode: 'payment',
You'd provide a list of line items: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Recommend also reading this: https://stripe.com/docs/products-prices/how-products-and-prices-work
thanks! last question, how i define a application_fee_amount with %?
I have 1000 which means 10 .00right?
but 1000 is 10.00 right?
Yeah