Use 3D Secure (3DS) in Square Online and In-App Payments APIs to verify the buyer and reduce the chance of fraudulent transactions. 3DS is also known as Strong Customer Authentication in the European Economic Area (EEA).
Note
Calling the verifyBuyer()
method in any of these APIs starts the 3DS flow.
3DS is a standard protocol developed by a collaboration of several payment card issuers. It defines a multi-factor authentication mechanism that can be used to satisfy the requirements of Strong Customer Authentication (SCA) wherever SCA is required.
3DS can also be used to authenticate buyers in countries where SCA isn't a requirement. In those countries, Square provides the 3DS mechanism for those sellers who opt to use it. 3DS creates the same buyer experience regardless of whether it's initiated from an SCA-required country. For more information about 3DS, see Strong Customer Authentication FAQ.
Before Square implemented 3DS for payments, a seller could be liable for payment card chargebacks for online payments. For card present payments, sellers aren't liable for fraud. With 3DS, the liability for fraudulent chargebacks is shifted to the card issuer in most cases. This liability shift to the issuer occurs when the payment is authenticated through 3DS and the card involved is a Mastercard, American Express, JCB, Visa, Diners Club International or UnionPay card. Any of these cards that can be saved on file with Square can also use 3DS. For more information, see Charge a Card on File with SCA.
As long as verifyBuyer
has been called to start the 3DS flow before processing payments, most of them will be protected from fraud liability when the issuer authorized the transaction. This still applies even if the issuer is unable to support 3D Secure.
Currently, when paying online, customers must enter their card number, expiration date, CVV, and postal code to make a payment. Buyers are required to complete two of the three factors of authentication when initiating a payment: something they know, something they own, and something they are. For online card payments, the SCA requirements are met by implementing 3DS. For in-store payments, SCA requirements are met through the use of chip and PIN or mobile wallets. Payments without this additional authentication are declined by the cardholder's bank. Payments initiated by sellers, such as recurring transactions or mail-order/telephone order (MOTO), don't require SCA.
Square advises all Square developers and partners operating in the European Economic Area (EEA), including the UK, to take appropriate steps to be ready for SCA enforcement starting January 1, 2021, to avoid an increase in declined payments for European cardholders.
In the UK, banks started asking their cardholders to complete SCA, with full enforcement of the SCA requirements by March 14, 2022. Across the rest of the EEA, banks are ramping up SCA enforcement starting January 1, 2021, with a staggered ramp-up through 2021.
Square provides SCA features for the Web Payments SDK and In-App Payments SDK within Europe, where the business taking the payment and the cardholder's bank are both in the EEA.
Note
SCA isn't required for in-person payment solutions such as the Square Point of Sale API or Reader SDK applications.
Sellers using Square products, such as Square Online and Invoices, don't need to make any changes because the products have been updated to meet SCA requirements. For example, Square invokes 3D Secure for online card payments or flags transactions as exempt (such as seller initiated). No additional updates are required for in-person payment solutions such as the Square Point of Sale API or Reader SDK.
Developers and partners that use Square developer products (such as the Web Payments SDK, In-App Payments SDK, and Square APIs) must ensure that their applications are SCA-compliant to minimize the impact of declined payments.
Using two of these elements together, instead of the traditional approach of using only passwords, helps reduce online fraud. Square also incorporates other low-friction authentication mechanisms like fingerprint and facial recognition to help increase your conversion rates.
Important
- 3D Secure should be invoked through the
verifyBuyer()
function only when the buyer is present and has initiated the transaction. - In the EU, payments that don't provide authentication get a
CARD_DECLINED_VERIFICATION_REQUIRED
error for transactions that require authentication. This error means that the seller didn't implementverifyBuyer
on the customer-initiated payments. For more information, see VerifyBuyerError.
The 3DS flow is started for a buyer if their payment card meets any of the conditions listed in the Square Risk Manager Glossary. For sellers outside of regions that require SCA, Square provides a mechanism in Risk Manager to let them opt in for 3DS on a location basis. For example, a seller might have an in-person location, an in-person and online location, and an online only location. Online payments are card-not-present payments and benefit from the added security of 3DS. In this case, a seller might opt in for 3DS in those locations.
A payment card might trigger the 3DS authentication flow and verify the identity of the buyer without generating a payment alert. A payment alert is only created in Risk Manager if the payment appears to be suspicious or fraudulent. Sellers in the European Union can use Risk Manager to manage potential fraud even though 3DS is enabled for them by default.
To enable 3DS, a non-EU seller uses an application integrated with a Square payments SDK to take a payment with a debit or credit card. If the application called the verifyBuyer
function when getting a payment token, the seller can enable 3DS in Risk Manager for the location that called the function. When enabled, 3DS is active until the seller disables it. 3DS cannot be enabled until verifyBuyer
has been called by the application at least once.
Important
3DS and Risk Manager are currently not supported for Japan-based sellers.
You can also configure the application to call verifyBuyer
and enable other authentication mechanisms, as the buyer verification process checks if the application has any verification method to apply to the payment. Currently, 3DS is the only authentication mechanism that Square supports.