#.saberkhan

1 messages · Page 1 of 1 (latest)

wicked egretBOT
mellow crane
#

hello! can you share which specific parameter this is?

tidal mango
#

I saw this feature in Create checkout session.

mellow crane
#

which specific feature is it? can you share a link to that feature?

tidal mango
#

There are more in other apis as well

mellow crane
#

usually a preview feature indicates that parameter is part of some beta

tidal mango
#

Do you know when Fed Now payment method will be available?

mellow crane
#

I've not heard of Fed Now before so no idea about that unfortunately

tidal mango
#

ok

tidal mango
#

I have added "cashapp" payment method but I do not see it in Checkout page.

mellow crane
#

can you share the checkout session id?

tidal mango
#

cs_test_b1iUr8t800WO84qzev8FuGTwG1C1eWlK6rho9SwXzSMx90YYnP7jCnEaqs

mellow crane
#

i see it in your Checkout Session, what are you seeing?

tidal mango
#

Let me look again

#

I do not see casapp as shown in above image

mellow crane
#

what do you see, can you share a screenshot?

tidal mango
#

ok

mellow crane
#

click on Check out as guest

tidal mango
#

ok

#

It will log me out

mellow crane
#

yes, you should see CashApp as an option now

tidal mango
#

I see it now. Why cannot I see other payment options when I am log in?

mellow crane
#

Link (which is what you're logged in to) doesn't support PromptPay as a saved payment method

tidal mango
#

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?

mellow crane
#

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

tidal mango
#

I can pass payment methods via api call or via dash board. Which one will be dominant?

mellow crane
#

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

tidal mango
#

},
"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

mellow crane
#

sort of, link is a bit special in that you need to click on Log in in your email field

tidal mango
#

So only four payment methods can be added programmatically per checkout session?

mellow crane
tidal mango
#

I tried to add more than 4 payment methos but only above four payment methods were added. I wonder why?

mellow crane
#

you should trace through your own code and verify what you're actually passing in to the payment_method_types parameter

tidal mango
#

Is there any restriction of passing payment method if I restrict usage of payment method in "future_usage"?.

#

I mean setup_future_usage

mellow crane
#

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?