#Monkey D. Luffy-PM
1 messages · Page 1 of 1 (latest)
👋 happy to help
could you please share the request id? here's how you can find one https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_WePSX4kSylNfY8
I'll take a look
so basically you created a payment method that wasn't attached to a customer right?
Yes
you need to first attach it to the customer and then use it payment intents
stripe.PaymentIntent.create(
amount=int(order.total_amount * 100),
currency=data.get("currency"),
payment_method_types=["card"],
payment_method=data.get("payment_method"),
customer=stripe_obj.stripe_id,
receipt_email=data.get("email"),
description="Payment For Order - {}".format(order.order_num),
setup_future_usage="on_session",
confirmation_method='manual',
confirm=True,
I am passing setup_future_usage="on_session'
The above key won't help?
I don't think that combination works
Hey, taking over here. Let me know if there's any follow-up Qs I can answer!