#.saberkhan
1 messages · Page 1 of 1 (latest)
hello! can you share which specific parameter this is?
I saw this feature in Create checkout session.
which specific feature is it? can you share a link to that feature?
usually a preview feature indicates that parameter is part of some beta
Do you know when Fed Now payment method will be available?
I've not heard of Fed Now before so no idea about that unfortunately
ok
I have added "cashapp" payment method but I do not see it in Checkout page.
can you share the checkout session id?
cs_test_b1iUr8t800WO84qzev8FuGTwG1C1eWlK6rho9SwXzSMx90YYnP7jCnEaqs
i see it in your Checkout Session, what are you seeing?
what do you see, can you share a screenshot?
ok
click on Check out as guest
yes, you should see CashApp as an option now
I see it now. Why cannot I see other payment options when I am log in?
Link (which is what you're logged in to) doesn't support PromptPay as a saved payment method
From dashboard I have turned on other payment methods like p24, ideal, giropay, eps, bancontact and they did not appear on checkout page. Any reason?
in payment_method_types, you explicitly only passed in 4 payment method types. Checkout will only show those payment_method_types if you explicitly pass them in. If you want to use automatic payment methods where Checkout determines what payment methods to show based on your Dashboard settings, currency, amongst some other criteria, then you shouldn't pass in payment_method_types at all. https://dashboard.stripe.com/test/logs/req_wWpO301hRd1SOK
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I can pass payment methods via api call or via dash board. Which one will be dominant?
if you pass in payment_method_types when creating the Checkout Session, then the listed payment methods in payment_method_types will show. If you do not pass in payment_method_types then the Dashboard payment methods will show
},
"payment_method_types": [
"card",
"cashapp",
"link",
"us_bank_account"
],
is the response from api call, Then I should see four payment methods. Right?
in the checkout page
sort of, link is a bit special in that you need to click on Log in in your email field
So only four payment methods can be added programmatically per checkout session?
you can see the full list that can be added here : https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_method_types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I tried to add more than 4 payment methos but only above four payment methods were added. I wonder why?
you should trace through your own code and verify what you're actually passing in to the payment_method_types parameter
Is there any restriction of passing payment method if I restrict usage of payment method in "future_usage"?.
I mean setup_future_usage
well, the first step is to verify what you're actually passing in to payment_method_types - have you checked your debugger or attempted to log what you're passing in to payment_method_types to check that?