3DSecure: Difference between revisions

From Barion Documentation
Jump to navigation Jump to search
No edit summary
Line 67: Line 67:


== Known issues ==
== Known issues ==
* when no phone number is registered to the shopper no sms could be sent, so the authentication will fail
* when the user is challenged, additional user interaction is required, which results in increased abandonment. The following could improve the rate of frictionless flows:
** sending the most available field marked with {{3dsfield}} in the [[Payment-Start-v2|PaymentStart]] request
** requesting [[ChallengePreference|TRA]] exemption (however you will be liable in case of fraud)


== Additional resources ==
== Additional resources ==

Revision as of 20:29, 21 January 2021

3DSecure


3D Secure (3DS, Three-Domain Secure) is a messaging protocol developed by EMVCo to provide a more secure online card payment process. It enables consumers to authenticate themselves with their card issuer when making card-not-present (CNP) e-commerce purchases. If the card is enrolled into 3DS authentication, additional information is required to decide whether the purchase is fraudulent or not. This decision is made by the card's issuer (the bank or other institution that issued the card) not by the Barion system.

There are two major versions of the protocol:

  • 3D Secure 1 is a HTTP redirect based scenario where the customer almost always needs to provide some extra proof for the transaction. The verification is usually a password or SMS code. Card schemes will decommission 3D Secure 1 by 2021/2022. Barion does not support this old protocol.
  • 3D Secure 2 is more sophisticated and uses additional information about the purchase, the shop and the cardholder to make the decision. This requires more input data but provides better flow with less friction. The card issuer may verify the shopper's identity using passive, biometric, and two-factor authentication approaches. According to the Strong Customer Authenticaton (SCA) rules of PSD2 RTS every card issued in the EU has to be authenticated. 3D Secure 2 complies with the regulation.
IMPORTANT
If the shopper completes a 3DSecure authenticaton successfully, the liability shifts from the merchant to the card issuer in case of fraud.

Liability shift rules

If a merchant implements 3D Secure authentication, he/she can avoid the liability for chargebacks in case of fraud (e.g. chargeback claim because of lost or stolen cards). This is called a liability shift. In general, if a shopper completes a 3D Secure challenge authentication flow successfully, the liability for fraudulent chargebacks shifts from the merchant to the card issuer.

Transaction type Liability shift to card issuer?
3D Secure 2 transactions with challenge. Yes
3D Secure 2 transactions where card issuer applies a PSD2 exemption without the merchant requesting it. E.g. issuer TRA. Yes
3D Secure 2 PSD2 SCA out-of-scope transactions: shopper's issuer is outside of the EEA, anonymous prepaid cards up to 150€ or merchant initiated transactions. No
3D Secure 2 transactions where merchant or acquirer requests for a PSD2 exemption and the issuer grants an exemption. No

The payment process

The payment follows these steps:

  1. The shopper checks out from the merchant's website and decides to pay for the goods via Barion.
  2. Shopper is redirected to the Barion Smart Gateway.
  3. Shopper inputs card details and clicks the Pay button.
    --- Until this point nothing changed ---
  4. Barion checks whether the card the shopper used is a 3DSecure capable card and also the version the issuer supports. If the card is not 3DSecure capable, the card authorization (charge) goes along without any extra step.
  5. If the card is 3D Secure capable
    • with 3DSecure 2, the v2 flow will be started:
      1. Barion starts the 3DS authentication in the background. Sends a lot of relevant information about the purchase to the card issuer. From this information, the issuer decides whether the payment is secure or should the customer be challenged in some form.
      2. If the result is that the customer should not be challenged (it is called frictionless flow) the customer's card is charged and the payment flow is continued.
      3. If the result is that the issuer needs more proof from the customer a popup window will be displayed. In this window, the issuer will display something for the customer. The content is up to the issuer but will be something that allows the customer to provide proof (SMS, token, question).
      4. After the customer successfully completed the challenge the card is authenticated and the payment flow continues with the authorization of the card. The card still can be declined after successful 3DS authentication.
  6. At the end of the payment the customer will be redirected to the merchant's website

3D Secure 2

The reason behind the second version was to provide a way to achieve the same level of security for the authentication but with less friction. For this a lot more information is required (or at least it is strongly recommended to provide them). This information comes from different sources:

  • merchant's data about the customer (purchase behavior, addresses, etc)
  • customer's browser information (screen size, timezone, language, etc)
  • customer provided data (card information, e-mail address)
  • Barion's data about the merchant, the purchase and the customer (merchant's MCC code, name of the shop, etc)

The card issuer receives this information package and calculates the risk of the transaction. The result of this calculation specifies the flow:

  • Frictionless flow: The customer will not be presented with any challenge screen, no more information needed, the authorization can take place.
  • Challenge flow: The information was not sufficient, additional challenge is needed to make sure that the card is not stolen.

To achieve the frictionless flow the merchant has to provide as many information as possible about the purchase and the customer. This must be provided during the v2/payment/start API call. The properties marked as 3DS must be specified. However, there are scenarios where not all of this data is available. In these cases there are ways to indicate the lack of information. If the merchant does not provide the necessary data the payment will be most likely fall into the challenge flow. This should be avoided because it causes friction and may result in the customer leaving the payment.

Although providing this data enhances the possibility of the frictionless flow it does not make it certain. This decision is up to the card issuer, Barion does not influence it. In case of challenge flow the card issuer will provide a challenge screen that the customer must complete. This can be various things: one-time password sent via text, secret password, etc.

Known issues

  • when no phone number is registered to the shopper no sms could be sent, so the authentication will fail
  • when the user is challenged, additional user interaction is required, which results in increased abandonment. The following could improve the rate of frictionless flows:
    • sending the most available field marked with
      3DS
      in the PaymentStart request
    • requesting TRA exemption (however you will be liable in case of fraud)

Additional resources