#riverviewtandoorpteltd_00386
1 messages ยท Page 1 of 1 (latest)
๐ how may I help?
you need to enable it in your dashboard https://dashboard.stripe.com/test/settings/payment_methods
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
you said you were using Stripe Checkout right?
yes here
you need to enable it in your dashboard https://dashboard.stripe.com/test/settings/payment_methods
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
would you mind creating a new checkout session and sending me the request ID? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site 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.
are you asking account ID ?
no
you need to create a new Checkout Session, and please read through the support doc I sent you to get the request ID
is it this : req_iKhzordKAqa2vg
taking a look
yes exactly. now I'll try to see why the Paynow method didn't show up
thanks Tarzan
I think the reason is that you're using payment_intent_data.setup_future_usage: "off_session" which means that you would have to pass in explicitly paynow in the payment_method_types array if you want it to show
you need to pass in cards and paynow for this parameter https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_method_types when creating the Checkout Session
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
how to pass in cards & Paynow ?
i tried
would you mind sharing the request ID?
C:\Users\ITADMIN\Downloads>stripe payment_methods create --payment-method
{
"error": {
"message": "In order to share a PaymentMethod, you must pass a connected account ID by using an OAuth key or the Stripe-Account header.",
"param": "payment_method",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_gok6zMgf4CyWe7?t=1695032620",
"type": "invalid_request_error"
}
}
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
req_iKhzordKAqa2vg
you shouldn't be doing this
this is missing the "paynow" in the array
as you can see https://dashboard.stripe.com/logs/req_iKhzordKAqa2vg
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
you need to pass payment_method_types: ["card", "paynow"]