#hananafzal88-3DS

1 messages · Page 1 of 1 (latest)

lament trout
#

Hi there, just want to clarify your question, do you want to know how to trigger 3DS in test mode?

rose portal
#

yes

#

i just want to trigger 3ds when payment intent created in .net core

lament trout
rose portal
#

i want to know the implentation of 3ds

lament trout
#

The 3DS flow will be triggered when you use one of the above test cards to make a payment

rose portal
#

@lament trout i am getting object error while adding 3ds

#

var options = new PaymentIntentCreateOptions
{
Amount = data.Amount * 100,
Currency = PaymentConstants.Currency,
PaymentMethodTypes = new List<string>
{
PaymentConstants.Card
},
Customer = user.CustomerId,
PaymentMethod = data.PaymentId,
TransferGroup = Guid.NewGuid().ToString(),
Description = data.Description,
Confirm = true,
PaymentMethodOptions =
{
Card =
{
RequestThreeDSecure = "any"
}
}

#

this is my code

lament trout
#

what is the error message?

rose portal
#

Error is fixed

#

now status is action_required

#

but i am not getting any box for 3ds verification

lament trout
#

What's your front integration? are you using payment elements?

rose portal
#

yes

lament trout