#rtxpower

1 messages · Page 1 of 1 (latest)

tall boltBOT
sinful echo
#

Hello

#

That is the public business name on your account

violet current
#

Oh and where can I find that exactly? I don't remember setting such

sinful echo
violet current
#

Oh thank you so much! Is this something I can change in here too?

 const session = await stripe.checkout.sessions.create({

            payment_method_types: ['card'],
            line_items: [{
                price_data: {
                    currency: currency,
                    product_data: {
                        name: `Order {insertNumber}`,
                    },
                    unit_amount: amountInCents,
                },
                quantity: 1,
            }],
            mode: 'payment',
            success_url: `http://localhost:5173/checkout/success`,
            cancel_url: 'http://localhost:5173/cart',
            payment_intent_data: {
                statement_descriptor: 'Webshop Template',
              },
        });```
sinful echo
#

Nope