#cat.noir
1 messages · Page 1 of 1 (latest)
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.
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer
If the Customer already has a valid email set, the email will be **prefilled and not editable **in Checkout.
const customer = await stripe.customers.create({
email
});
i currently do this in nodejs
do i create a customer without any email field?
you could if you wish yes.
I see thanks. Also another problem i noticed that in the dashboard, i get options for paypal, klarna, card. but on the actual website, it doesnt show these options. I live in the UK btw
payment methods are often restricted by currency and you're using USD which rules out must European payment methods
but what about paypal
maybe it's incompatible with some option you're using on the CheckoutSession.
What is the ID cs_test_xxx of a session you're testing with?
https://dashboard.stripe.com/test/logs/req_MAuthj2ATKV7po you explicitly pass payment_method_type:["card"]
theres so many options, how can i just allow uh all i guess
you remove it
if you remove it then 'automatic payment methods' are used, which use your settings from https://dashboard.stripe.com/settings/payment_methods
setting payment_method_types yourself overwrites that
got it 👍