#teamtalk
1 messages · Page 1 of 1 (latest)
Hello
No that's not possible as far as I know
Let me double check that Radar doesn't support that
Ah sorry, I thought you meant CAPTCHA when you said "challenge" but you are talking about 3DS.
Yes sca
Ah well we will handle SCA for you
You don't have to worry about that -- it will always be requested when required by SCA
So I've had a chargeback for potential fraud on a payment. They were not presented with 3ds
Okay well then that payment likely wasn't in-scope for SCA
If you want to force 3DS on every payment then you can set request_three_d_secure: any: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_options-card-request_three_d_secure
Thanks, does this mean that if it's not in scope for 3ds then it won't allow it to go through?
It will force 3DS to be requested on every payment attempt
This is discussed here: https://stripe.com/docs/payments/3d-secure#manual-three-ds
But yeah the other option to ensure every transaction that doesn't complete 3DS and transition your liability would be to use a custom Radar rule based on liabiltiy_shift: https://stripe.com/docs/radar/rules/supported-attributes#3d-secure
Thank you
Sure
How would I add it onto something like this:
$stripe->paymentIntents->create([
'amount' => 2000,
'currency' => 'usd',
'automatic_payment_methods' => ['enabled' => true],
]);
payment_method_options.card.request_three_d_secure
'amount' => 2000,
'currency' => 'usd',
'automatic_payment_methods' => ['enabled' => true],
'payment_method_options' => [
'card' => [
request_three_d_secure' => 'any'
]
]
]);```
Great this will always show 3ds?
It will always request 3DS.
3DS won't necessarily show if the issuer doesn't support it
Post payment, is it possible to know if a payment was secured with 3ds? via api
Yeah you can look at the payment_method_details.card.three_d_secure property: https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card-three_d_secure
in risk_level what's higher, elevated or highest
highest
currently mine is set to highest can I change the rule to elevated, how?
Not sure what you mean by that
I cant seem to change any radar rules
You may not have Radar for Fraud Teams in that case
You will want to talk to our Support team via https://support.stripe.com/contact/login to get that enabled