Overview
To enable an intstant payment (PULL/PUSH) with an external card-on-file, the following steps are required:
- Tokenize card
- Add card-on-file using card token
- For
PULLpayments, enable 3-D Secure (3DS) authentication - Initiate external card-on-file payment
Tokenize card
To enable customers to add card-on-file, you first need to tokenize the card through integration with the TabaPay Cards Tokenization widget. The widget allows for direct communication between the client, TabaPay, and Synctera, eliminating the need for the integrator to have PCI certification. This integration is described step-by-step below.Getting started
Before integrating with TabaPay Card PCI-Compliant iFrame, ensure that you have all the necessary components in place:- Ensure Synctera API keys are provisioned and working for your business;
- Ensure external cards have been enabled for your program with your Synctera implementation and onboarding contact;
- If integrating in a mobile application, you may need to use a web view such as a WKWebView in a iOS application, WebView in an android application, or a WebView in React Native;
- Content security policies should be set in the application using the following directives:
Display iFrame and tokenize an External Card
The steps below describe how to display TabaPay PCI-Compliant iFrame:- Add an iFrame tag to the desired webpage:
- Set the iFrame source for the appropriate environment:
- prod: “https://sso.tabapay.com/SSOSynctera.html”
- sandbox: “https://sso.sandbox.tabapay.com:8443/SSOSynctera.html”
- Add an event listener and handler for TabaPay events:
💡 For more information on card tokenization using TabaPay PCI-Compliant iFrame, refer to the TabaPay documentation.
Customization Options
The TabaPay Browser SDK provides a number of customization options for controlling the layout and appearance of the TabaPay Card PCI-Compliant iFrame. See TabaPay Browser SDK for additional details and specific customization options.Add card-on-file using card token
Once the card has been tokenized, use thetoken and cardholder name to create an External Card by calling POST /v1/external_cards/tokens - customer_id must also be provided and business_id may optionally be provided if applicable.
📘 The token will expire after 5 minutes, so ensure External Card creation is performed shortly after card tokenization.Verifications: When an External Card is created, the following verifications are performed:
- CVV2 verification:
- CVV2 provided in the iFrame is validated against the CVV2 on file with the issuer
- Address verification:
- Address stored on the customer’s record on Synctera is validated against the address on file with the issuer
- Note that if
business_idis provided, address verification is performed on the Business’s legal address, otherwise, it is performed on the Person’s legal address. However, cardholdernamematching is performed on the Person’s name regardless.
- Name verification:
- Name provided in the iFrame is validated against the name on file with the issuer
verifications object contains information about the card, as well as the type of transactions the card supports. If either pull_enabled or push_enabled are false, that type of transaction may not be performed using the card.
Enable 3DS and create payment
Once a card has been added on file, aPULL or a PUSH payment can be initiated with the card. For PULL payments, 3-D Secure (3DS) authentication is required. For details on how to enable 3DS, and how to iniate a payment with a card-on-file, see the Instant Payments - Card-On-File section.
