0 purchases
card flutter
Card-Flutter #
Integrating Flutter Card SDK in your application
Introduction #
Before diving into the development process, it's essential to establish the prerequisites and criteria necessary for a successful build. In this step, we'll outline the specific iOS/Android requirements, including the minimum SDK version and other important details you need to consider. Let's ensure your project is set up for success from the very beginning.
Sample Demo #
Step 1: Requirements #
We support from iOS 13.0+
Dart 3.0.0+
Java version 11
A minimum Android SDK/API level of 24
In order to be able to use card scanner functionality, please make sure you added the correct permission key-value in the iOS project info.plist.
<key>NSCameraUsageDescription</key> <string>Card SDK needs it for scanner functionality</string>
in order to accept online payments on your application, you will need to add at least the Internet permission in the manifest file.
<uses-permission android:name="android.permission.INTERNET" /> //get internet access to complete online payments
Step 2: Get Your Public Keys #
While you can certainly use the sandbox keys available within our sample app which you can get by following the installation process, however, we highly recommend visiting our onboarding page, there you'll have the opportunity to register your package name and acquire your essential Tap Key for activating Card-Flutter integration. If you will support both iOS and Android, you will need to have two different keys for each app.
Step 3: Installation #
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
card_flutter: 1.0.8
In your library add the following import:
import 'package:card_flutter/card_flutter.dart';
Step 4: Integrating Card-Flutter #
This integration offers two distinct options: a simple integration designed for rapid development and streamlined merchant requirements, and an advanced integration that adds extra features for a more dynamic payment integration experience.
Integration Flow #
Noting that in Flutter, you will use our card form like any other widget. While creating, the widget you will also need to pass the parameters & listen to the callbacks based on your needs.
You will have to create a variable of type TapCardViewWidget
While intialising the widget:
Pass the parameters to the widget.
Implement the provided interfaces/callbacks
Our card widget is a stateful one, depends on stateful variable to generate the token. More to follow.
Start tokenizing a card on demand.
Using Code to create the TapCardViewWidget #
Creating the TapCardViewWidget from code
Head to your controller where you want to display the TapCardViewWidget as a widget.
Import Card-Flutter as follows import 'package:card_flutter/models/models.dart.
In the coming code sample, we will show how to embed the card form within your widget tree.
TapCardViewWidget( sdkConfiguration: const {}, generateToken: false // More on this later),
copied to clipboard
Simple Integration #
Here, you'll discover a comprehensive table featuring the parameters applicable to the simple integration. Additionally, you'll explore the various methods for integrating the SDK. Furthermore, you'll gain insights into card tokenization after the initial payment and learn how to receive the callback notifications.
Parameters #
Each parameter is linked to the reference section, which provides a more in depth explanation of it.
|Parameter|Description | Required | Type| Sample
|--|--|--| --|--| | operator| Key obtained after registering your package name, also known as Public key. | True | Map| {"operator": {"publicKey": "pk_test_YhUjg9PNT8oDlKJ1aE2fMRz7"} | | scope| Defines the intention of using Card-Flutter. | True | String| String scope = "Token"| | purpose| Defines the intention of using the generated Token. | True | String| String purpose = "Charge" | | order| Order details linked to the token. | True | Map| order = {"id":"", "amount":1, "currency":"SAR", "description": "Authentication description", "reference":""} | | customer|Customer details for tokenization process. | True | Map| customer = {"id":"", "name":[{"lang":"en","first":"TAP","middle":"","last":"PAYMENTS"}], "nameOnCard":"TAP PAYMENTS", "editble":true, "contact":{"email":"[email protected]", "phone":{"countryCode":"+965","number":"88888888"}}} |
Configuring the Card-Flutter SDK #
While creating the widget as previously mentioned, it is time to pass the parameters needed for the SDK to work as expected and serve your need correctly.
Creating the parameters
To allow flexibility and to ease the integration, your application will only has to pass the parameters as a Dictionary[String:Any] .
First, let us create the required parameters:
/// The minimum needed configuration Map<String,dynamic> parameters = {
"customer":{ "name":[ { "first":"TAP", "middle":"", "lang":"en", "last":"PAYMENTS" } ], "contact":{ "email":"[email protected]", "phone":{ "countryCode":"+965", "number":"88888888" } } }, "purpose":"Charge", "operator":{ "publicKey":"pk_test_YhUjg9PNT8oDlKJ1aE2fMRz7" }, "scope":"Token", "order":{ "description":"", "currency":"SAR", "amount":1.0 }}
copied to clipboard
Pass these parameters to the TapCardViewWidget widget
// We provide the card view the needed parameters. TapCardViewWidget(sdkConfiguration: parameters, generateToken: generateToken,) // This generate token is a stateful variable, if set to true token will be generated
copied to clipboard
Full code snippet for creating the parameters + passing it TapCardViewWidget variable + Listening to callbacks
import 'package:card_flutter/card_flutter.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'config_settings_screen.dart';
class CardViewScreen extends StatefulWidget {
final Map<String, dynamic> dictionaryMap;
const CardViewScreen({
super.key,
required this.dictionaryMap,
});
@override
State<CardViewScreen> createState() => _CardViewScreenState(); }
class _CardViewScreenState extends State<CardViewScreen> {
dynamic mCardSDKResponse;
bool generateToken = false;
bool showTapTokenButton = false;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
leading: IconButton(
onPressed: () {
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(
builder: (context) => const ConfigSettingsScreen(),
),
(route) => false);
},
icon: const Icon(
CupertinoIcons.back,
),
),
),
body: Column(
mainAxisSize: MainAxisSize.min,
children: [
TapCardViewWidget(
sdkConfiguration: widget.dictionaryMap,
onReady: () {
setState(() {
showTapTokenButton = true;
});
},
onFocus: () {
setState(() {
generateToken = false;
});
},
onSuccess: (String? success) {
setState(() {
mCardSDKResponse = success.toString();
generateToken = false;
});
},
onValidInput: (String? validInput) {
setState(() {
mCardSDKResponse = validInput.toString();
generateToken = false;
});
},
onHeightChange: (String? heightChange) {
setState(() {
mCardSDKResponse = heightChange.toString();
});
},
onBinIdentification: (String? bindIdentification) {
setState(() {
mCardSDKResponse = bindIdentification.toString();
});
},
onChangeSaveCard: (String? saveCard) {
setState(() {
mCardSDKResponse = saveCard.toString();
});
},
onError: (String? error) {
setState(() {
mCardSDKResponse = error.toString();
generateToken = false;
});
},
generateToken: generateToken,
cardNumber: "512345000000****",
cardExpiry: "01/39",
),
const SizedBox(height: 10),
Visibility(
visible: showTapTokenButton,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 12),
child: FilledButton(
onPressed: () {
setState(() {
generateToken = true;
});
},
style: FilledButton.styleFrom(
fixedSize: Size(
MediaQuery.sizeOf(context).width * 0.96,
50,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
),
onHover: (bool? value) {},
child: const Text(
"Get Tap Token",
),
),
),
),
const SizedBox(height: 10),
Expanded(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: SingleChildScrollView(
child: SelectableText(
mCardSDKResponse == null
? ""
: "SDK RESPONSE : $mCardSDKResponse",
textAlign: TextAlign.center,
style: const TextStyle(
color: Colors.black,
fontSize: 12,
),
),
),
),
),
],
),
);
} }
copied to clipboard
Tokenise the card #
📘
A token is like a secret code that stands in for sensitive info, like credit card data. Instead of keeping the actual card info, we use this code. Tokens are hard for anyone to understand if they try to peek, making it a safer way to handle sensitive stuff.
Following the above code samples, once the TapCardViewWidget now has a valid input, you will be able to start the tokenization process by changing the stateful variable generateToken to true as we declared above, which you can find by following Step 5 - Tokenize the card.
Advanced Integration #
The advanced configuration for the Card-Flutter integration not only has all the features available in the simple integration but also introduces new capabilities, providing merchants with maximum flexibility. You can find a code below, where you'll discover comprehensive guidance on implementing the advanced flow as well as a complete description of each parameter.
Parameters #
Each parameter is linked to the reference section, which provides a more in depth explanation of it.
Configuration
Description
Required
Type
Sample
operator
Key obtained after registering your bundle id.
True
Map
{"operator": {"publicKey": "pk_test_YhUjg9PNT8oDlKJ1aE2fMRz7"}
purpose
Defines the intention of using the generated Token.
True
String
String purpose = "Charge"
order
Order details linked to the token.
True
Map
"order" = : {"description": "Authentication description","currency": "KWD","amount": 1,"id": "","reference": "","metadata": {}}
merchant
Merchant id obtained after registering your bundle id.
True
Map
merchant = {"id":""}
customer
Customer details for tokenization process.
True
Map
customer = {"id":"", "name":[{"lang":"en","first":"TAP","middle":"","last":"PAYMENTS"}], "nameOnCard":"TAP PAYMENTS", "editble":true, "contact":{"email":"[email protected]", "phone":{"countryCode":"+965","number":"88888888"}}}
features
Extra features for customization (optional).
False
Map
features = {"alternativeCardInputs":{"cardScanner":true, "cardNFC": true}, "acceptanceBadge":true, "customerCards":{"saveCard":false, "autoSaveCard":false}}
acceptance
Acceptance details for the transaction (optional).
False
Map
acceptance = {"supportedSchemes":["AMERICAN_EXPRESS","VISA","MASTERCARD","OMANNET","MADA"], "supportedFundSource":["CREDIT","DEBIT"], "supportedPaymentAuthentications":["3DS"]}
fieldVisibility
Visibility of optional fields in the card form (optional).
False
Map
fieldVisibility = {"card":{"cardHolder":true, "cvv": true}}
interface
Look and feel related configurations (optional).
False
Map
interface = {"locale": "en", "theme": "light", "edges": "curved", "cardDirection": "dynamic", "colorStyle": "colored", "loader": true}
post
Webhook for server-to-server updates (optional).
False
Mao=o
post = {"url":""}
Initialisation of the input #
You can use a Map<String,dynamic> to send data to our SDK. The benefit is that you can generate this data from one of your APIs. If we make updates to the configurations, you can update your API, avoiding the need to update your app on the App/Play Store.
"features": {
"customerCards": {
"saveCard": true,
"autoSaveCard": true
},
"alternativeCardInputs": {
"cardScanner": true,
"cardNFC": false,
},
"acceptanceBadge": true,
},
"post": const {"url": ""},
"customer": {
"id": "",
"name": const [
{
"first": "TAP",
"middle": "",
"lang": "en",
"last": "PAYMENTS"
}
],
"editable": true,
"contact": const {
"email": "[email protected]",
"phone": {
"countryCode": "+965",
"number": "88888888"
}
},
"nameOnCard": "",
},
"fieldVisibility": {
"card": {
"cardHolder": true,
"cvv": true,
}
},
"merchant": {"id": ""},
"interface": {
"colorStyle": "colored",
"theme": "light",
"locale": "en",
"edges": "curved",
"cardDirection": "dynamic",
"loader": true
},
"purpose": "Charge",
"operator": {
"publicKey": "",
},
"scope": "Token",
"order": {
"description": "",
"currency": "SAR",
"amount": 1.0,
"id": "",
"reference": "",
"metadata": const {"a": "abc"}
},
"acceptance": {
"supportedPaymentAuthentications":
["3DS"],
"supportedFundSource": ["CREDIT","DEBIT"],
"supportedSchemes": [ "AMERICAN_EXPRESS", "MADA", "MASTERCARD", "VISA", "OMANNET"],
},
},
},
}
copied to clipboard
Receiving Callback Notifications (Advanced Version) #
The below will allow the integrators to get notified from events fired from the TapCardViewWidget.
TapCardViewWidget(
sdkConfiguration: widget.dictionaryMap,
onReady: () {
},
onFocus: () {
},
onSuccess: (String? success) {
},
onValidInput: (String? validInput) {
},
onHeightChange: (String? heightChange) {
},
onBinIdentification: (String? bindIdentification) {
},
onChangeSaveCard: (String? saveCard) {
},
onError: (String? error) {
},
generateToken: true,
cardNumber: "51234500********",
cardExpiry: "01/39", ),
copied to clipboard
Step 5: Tokenize the Card #
The Card-Flutter SDK provides a stateful variable, that allows you to instruct it to start the tokenization process on demand or whenever you see convenient, in your logic flow. As a guidance we would only recommend calling this interface after getting onValidInput with data true callback as described above and shown in the code block below.
📘
Tokenize the Card
> #
What is a Token?
A token is like a secret code that stands in for sensitive info, like credit card data. Instead of keeping the actual card info, we use this code. Tokens are hard for anyone to understand if they try to peek, making it a safer way to handle sensitive stuff.
> #
What is Tokenization of a Card?
Card tokenization is like changing your credit card into a secret code. You can use this code safely without showing your actual card info. It's a common practice in payments to keep things secure and prevent your card details from being seen by others.
> #
Why Do I Need to Tokenize a Card?
There are several reasons to tokenize a card:
Security > Tokenization helps protect sensitive card data, reducing the risk of data breaches or unauthorized access.
Compliance > Many regulations and industry standards, like PCI DSS, require the use of tokenization to safeguard cardholder data.
Recurring Payments > Tokens are useful for recurring payments, as they allow you to charge a customer's card without storing their actual card details.
Convenience > Tokens simplify payment processing, as you only need to deal with tokens instead of card numbers.
Declare a boolean variable in your stateful widget
This variable will be passed to the TapCardViewWidget while initialisation as below.
Whenever you need, change it to true to trigger the tokenization status in the TapcardViewWidget.
👍
Also, once you correctly trigger the interface, you should expect to hear back from the SDK in one of two callbacks, onSuccess or onError.
Parameters Reference #
Below you will find more details about each parameter shared in the above tables that will help you easily integrate Card-Flutter SDK.
operator #
Definition: It links the payment gateway to your merchant account with Tap, in order to know your business name, logo, etc...
Type: string (required)
Fields:
publicKey
Definition: This is a unique public key that you will receive after creating an account with Tap which is considered a reference to identify you as a merchant. You will receive 2 public keys, one for sandbox/testing and another one for production.
Example:
"operator": {"publicKey":"pk_test_YhUjg9PNT8oDlKJ1aE2fMRz7"}
copied to clipboard
scope #
Definition: This is used in order to identify the type of token you want to generate. A token is created in order to save the card details after submitting the form in a more secure way.
Type: String (required)
Possible Values:
Token
Definition: Created before the payment in complete, in order to save the card and do a charge later
Example: String scope = "Token"
AuthenticatedToken
Definition: This is a token created and authenticated by the customer. Which means that the customer entered the card information and also passed the Authentication step (3DS) and got the token after.
Example: String scope = "AuthenticatedToken"
purpose #
Definition: This will identify the reason of choosing the type of token generated in the scope field, like if it will be used for a single transaction, recurring, saving the token, etc...
Note: Only choose the option that suits your needs best.
Type: String (required)
Possible Values:
Charge:
Definition: Perform a charge transaction. Capturing an amount from the customer
Example: String purpose = "Charge"
Authorize:
Definition: Perform a hold on the amount.
Example: String purpose = "Authorize"
Save Token:
Definition: Save the card to use it afterwards in MITs.
Example:String purpose = "Save Token"
order #
Definition: This defined the details of the order that you are trying to purchase, in which you need to specify some details like the id, amount, currency ...
Type: Map<String,dynamic>, (required)
Fields:
id
Definition: Pass the order ID created for the order you are trying to purchase, which will be available in your database.
Note: This field can be empty
currency
Definition: The currency which is linked to the order being paid.
amount
Definition: The order amount to be paid by the customer.
Note: Minimum amount to be added is 0.1.
description
Definition: Order details, which defines what the customer is paying for or the description of the service you are providing.
reference
Definition: This will be the order reference present in your database in which the paying is being done for.
Example:
"order": {
"description": "",
"currency": "SAR",
"amount": 1.0,
"id": "",
"reference": "",
"metadata": const {"a": "abc"}
}
copied to clipboard
merchant #
Definition: It is the Merchant id that you get from our onboarding team. This will be used as reference for your account in Tap.
Type: Map<String,dynamic> (required)
Fields:
id
Definition: Generated once your account with Tap is created, which is unique for every merchant.
Example: dart merchant = {"id":""}
customer #
Definition: Here, you will collect the information of the customer that is paying using the token generate in the SDK.
Type: Map<String,dynamic> (required)
Fields:
id
Definition: This is an optional field that you do not have before the token is generated. But, after the token is created once the card details are added, then you will receive the customer ID in the response which can be handled in the onSuccess callback function.
name
Definition: Full Name of the customer paying.
Fields:
lang
Definition: Language chosen to write the customer name.
first
Definition: Customer's first name.
middle
Definition: Customer's middle name.
last
Definition: Customer's last name.
editable
Definition: The customer's name on the card he is paying with, also known as cardholder name.
Note: It is of type Boolean, and indicated whether or not the customer can edit the cardholder name already entered when the token got created.
contact
Definition: The customer's contact information like email address and phone number.
Note: The contact information has to either have the email address or the phone details of the customers or both but it should not be empty.
Fields:
email
Definition: Customer's email address
Note: The email is of type string.
phone
Definition: Customer's Phone number details
countryCode
number
nameOnCard
Definition: Pre-fill the cardholder name already received once the payment form is submitted.
Example:
"customer": { "id": "",
"name": const [
{
"first": "TAP",
"middle": "",
"lang": "en",
"last": "PAYMENTS"
}
],
"editable": true,
"contact": const {
"email": "[email protected]",
"phone": {
"countryCode": "+965",
"number": "88888888"
}
},
"nameOnCard": "",
}
copied to clipboard
features #
Definition: Additional functionalities to be added in order to make the payment gateway experience more customisable for your needs, like showing the accepted card brands on the payment form, save card toggle button...
Type: Map<String,dynamic> (optional)
Fields:
acceptanceBadge
Definition: A boolean to indicate wether or not you want to display the list of supported card brands that appear beneath the card form itself.
customerCards
Definition: You will have the option to display either the toggle button that allows to save the card or the autosave card.
Fields:
saveCard
Definition: A boolean to indicate wether or not you want to display the save card option to the customer.
Must be used with a combination of these 2 scopes either SaveToken or SaveAuthenticatedToken.
autoSave
Definition: A boolean to indicate wether or not you want the save card switch to be on by default.
alternativeCardInput
Definition: You can also, either add the card information by scanning the card or by using NFC.
Note: In order for that to work, you will need to add the Camera usage description to your info.plist file like so
copied to clipboard
Fields: 1. cardScanner Definition: A boolean to indicate whether or not you want to display the scan card icon.
Example:
"features": { "customerCards": {
"saveCard": true,
"autoSaveCard": true
},
"alternativeCardInputs": {
"cardScanner": true,
"cardNFC": false,
},
"acceptanceBadge": true,
}
copied to clipboard
acceptance #
Definition: This will help in controlling the supported payment schemes, like MasterCard and Visa, and the fund source either being debit or credit card and you will also be able to check if you want the customers to complete the 3DS phase (Authentication) or not. 2. Type: Dictionary (optional) 3. Fields:
supportedSchemes
Definition: A list to control which card schemes the customer can pay with, note that he can choose more than one card scheme.
Possible Values:
AMERICAN_EXPRESS
VISA
MASTERCARD
MADA
OMANNET
supportedFundSource
Definition: A list to control which card types are allowed by your customer.
Possible Values:
Debit
Credit
supportedPaymentAuthentications
Definition: A list of what authentication techniques you want to enforce like 3DS authentication
Possible Values:
3DS
Example:
"acceptance": {
"supportedPaymentAuthentications":
["3DS"],
"supportedFundSource": ["CREDIT","DEBIT"],
"supportedSchemes": [ "AMERICAN_EXPRESS", "MADA", "MASTERCARD", "VISA", "OMANNET"],
}
copied to clipboard
fieldVisibility #
Definition: A boolean to indicate wether or not you want to show/collect the card holder name.
Type: Map<String,dynamic> (optional)
Fields:
card
cardHolder
Definition: The person that is paying using credit or debit card.
cvv
Definition: CVV number of the card.
Example:
fieldVisibility = {"card": {"cardHolder": true,"cvv": true,}}
copied to clipboard
interface #
Definition: This will help you control the layout (UI) of the payment form, like changing the theme light to dark, the language used (en or ar), ...
Type: Dictionary (optional)
Fields:
loader
Definition: A boolean to indicate wether or not you want to show a loading view on top of the card form while it is performing api requests.
locale
Definition: The language of the card form. Accepted values as of now are:
Possible Values:
en(for english)
ar(for arabic).
theme
Definition: The display styling of the card form. Accepted values as of now are:
Options:
light
dark
dynamic ( follow the device's display style )
edges
Definition: Control the edges of the payment form.
Possible Values:
curved
flat
cardDirection
Definition: The layout of the fields (card logo, number, date & CVV) within the card element itself.
Possible Values:
ltr
Definition: The fields will inflate from left to right.
rtl
**Definition: The fields will inflate from right to left.
dynamic
Definition: The fields will inflate in the locale's direction.
colorStyle
Definition: How do you want the icons rendered inside the card form.
Possible Values:
colored
monochrome 4.
Example:
"colorStyle": "colored",
"theme": "light",
"locale": "en",
"edges": "curved",
"cardDirection": "dynamic",
"loader": true
}
copied to clipboard
post #
Definition: Here you can pass the webhook URL you have, in order to receive notifications of the results of each Transaction happening on your application.
Type: Dictionary (optional)
Fields:
url
Definition: The webhook server's URL that you want to receive notifications on.
Example:
post = {"url":""} # Expected Callbacks Responses
onBinIdentification #
{ "bin": "557607", "bank": "COMMERCIAL INTERNATIONAL BANK (EGYPT) S.A.E.", "card_brand": "MASTERCARD", "card_type": "DEBIT", "card_category": "PLATINUM", "card_scheme": "MASTERCARD", "country": "EG", "address_required": false, "api_version": "V2", "issuer_id": "bnk_TS02A1320232208a5O41810531", "brand": "MASTERCARD"}
copied to clipboard
onSuccess #
The response here will differ based on the scope:
Token #
{ "id": "tok_4WUP3423199C4Vp18rY9y554", "created": 1697656174554, "object": "token", "live_mode": false, "type": "CARD", "purpose": "Transaction", "source": "CARD-ENCRYPTED", "used": false, "card": { "id": "card_U8Wb34231992m7q185g9i558", "object": "card", "address": {}, "funding": "CREDIT", "fingerprint": "gRkNTnMrJPtVYkFDVU485JtGPdhzQr%2FnmHGhlzLBvuc%3D", "brand": "VISA", "scheme": "VISA", "category": "", "exp_month": 2, "exp_year": 44, "last_four": "4242", "first_six": "424242", "first_eight": "42424242", "name": "AHMED", "issuer": { "bank": "", "country": "GB", "id": "bnk_TS05A3420232209Kp2j1810445" }
},"save_card": false, "url": ""}
copied to clipboard
AuthenticatedToken #
{ "id": "auth_payer_MhIp23231913vYjl18nx94755", "object": "Authenticate", "live_mode": false, "api_version": "V2", "status": "AUTHENTICATED", "created": "1697656409282", "amount": 1, "currency": "KWD", "save_card": false, "provider": {
"name": "MPGS" },
"transaction": {
"timezone": "UTCZ", "created": "1697656409282" },
"response": {
"code": "000", "message": "Authentication Successful" },
"reference": {
"transaction": "tck_LV02G1720231634Xj51824647", "order": "ord_Tlh924231913OouS18vd9O487" },
"customer": {
"id": "", "name": [
{
"first_name": "test", "middle_name": "test", "last_name": "test", "locale": "en" }
],
"name_on_card": "Ahmed", "email": "[email protected]", "phone": {
"country_code": "+20", "number": "1099137777" }
},
"source": {
"id": "tok_RCiU23231913dWqQ18WV9Q18" },
"merchant": {
"id": "1124340" },
"card": {
"first_six": "424242", "scheme": "VISA", "brand": "VISA", "category": "", "last_four": "4242", "name": "AHMED", "expiry": {
"month": "02", "year": "44" },
"funding": "CREDIT" },
"authentication": {
"acsEci": "02", "card_enrolled": "Y", "authenticationToken": "jHyn+7YFi1EUAREAAAAvNUe6Hv8=", "transactionId": "h3q0bQzZNyBueA//+57RcpfPo6s=", "version": "3DS1", "channel": "PAYER_BROWSER", "purpose": "Transaction", "url": "https://authenticate.alpha.tap.company/redirect/auth_payer_MhIp23231913vYjl18nx94755",
"transStatus": "Y", "mode": "C" },
"redirect": {
"url": "" } }
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.