#Slybald

1 messages · Page 1 of 1 (latest)

long zincBOT
rain urchin
#

Hi, adding these to the thread:

But Klarna on Stripe supports USD currency: https://stripe.com/docs/payments/klarna
I create the checkout session like this:
const session = await stripe.checkout.sessions.create({
payment_method_types: paymentMethods: [ "card", "klarna" ],
mode: "payment",
allow_promotion_codes: true,
line_items: [{
price: price,
quantity: 1
}],
success_url: ${process.env.PaymentGatewayLink}/Success,
cancel_url: ${process.env.PaymentGatewayLink}/Cancel
});
I use the latest version of the stripe npm package.

Can you please help me?

errant relic
#

But Klarna on Stripe supports USD currency: https://stripe.com/docs/payments/klarna

I create the checkout session like this:

  const session = await stripe.checkout.sessions.create({
    payment_method_types: paymentMethods: [ "card", "klarna" ],
    mode: "payment",
    allow_promotion_codes: true,
    line_items: [{
      price: price,
      quantity: 1
    }],
    success_url: `${process.env.PaymentGatewayLink}/Success`,
    cancel_url: `${process.env.PaymentGatewayLink}/Cancel`
  });

I use the latest version of the npm stripe package.

Can you please help me?

Learn about Klarna, a global payment method for customers to buy now and pay later.

#

I think it's a bug on the Stripe side

rain urchin
#

Can you share this request id where you're seeing this error message please?

errant relic
rain urchin
#

I need to test this on my own account, thank you for your patience

#

It works with my US account, further digging

errant relic
#

I don't know what to do anymore!

rain urchin
#

Ahhh, I was able to confirm with a coworker..

errant relic
#

You mean the France account of the seller?

rain urchin
#

The merchant/account, yes

errant relic
#

Okay, I understand (but it wasn't written on the documentation, or I can't read)

errant relic
rain urchin
#

The way to read the document is by section:

errant relic
#

AHHHHHHhhhhhhhhhhhhhhh my bad

#

thanks for your help, and have a nice day/evening!