Latency, Jitter and Lost Packets

* Latency, Jitter and Lost Packets* * With the above four scenarios in mind the solution relies on the quality of the connections from the POS Till, POS Server and the Devices to the Indigo Server as well as from the Indigo Server to the iVeri Gateway. If any of these connections suffers from high latency or dropped packets the solution as a whole will not perform as required so it is imperative that the networks on which the solution is deployed have adequate bandwidth as well as that they have low latency and zero packet losses. This means that if the networks are shared with other equipment it is important to understand what that equipment is doing and when it is doing it so that it doesn’t impinge on the operational requirements of the Indigo Solution. The interaction between the Devi

Lite

Transactions  ** View * Purpose *   - To view the list of Successful Orders for a selected Date or Period in order to check these against your confirmation emails or to view ALL details related to individual transactions. Action: * In the menu bar, Mouse over Lite Transactions - View - Successful. If you only have one Application ID, this page will NOT be displayed, and you will be automatically taken to the Choose Date/Period page. Image [1] Choose a specific  Application ID* Image [2] * Choose a date range to start your  Search* View%20-%20Successful%203 [3] View%20-%20All%20Transactions%204 [4] Successful * Purpose *   - To view the list of Successful  Transactions for a selected Date or Period in order to check these against your confirmation emails or to view ALL details related to

LiteBox Hosted Payment Page

LiteBox Hosted Payment Page * ** The LiteBox hosted payment page is an e-commerce solution that allows merchants to connect, send payment requests to the iVeri Payment Gateway without redirecting the cardholder away from their website. When implemented, the LiteBox pops up and sits in-front of the merchant’s website. From a merchant/cardholder point of view the LiteBox solution provides a more seamless checkout experience. Picture3 [7] An example is available online on None [1] this link . To simulate the LiteBox behaviour, click on “Modal”. Merchants’ developers can download the JavaScript library that handles the events to generate the button. The library can be found on the following URLs: For Nedbank acquired merchants located in South Africa, Zimbabwe, Namibia, Lesotho and Swaziland

Lite Developer's guide

The iVeri range of payment solutions, developed by iVeri Payment Technologies (Pty) Ltd provides proven credit card payment solutions for businesses that have online or physical presence. LIte is an online payment product.

Lite Developer's guide

The iVeri range of payment solutions, developed by iVeri Payment Technologies (Pty) Ltd provides proven credit card payment solutions for businesses that have online or physical presence. LIte is an online payment product.

MarketPlaces

A marketplace is a third-party platform that facilitates payment acceptance between buyers and retailers through a unified digital interface, typically offered via an e-commerce website and mobile application. Transactions processed by marketplaces are classified as “card-not-present”, reflecting the remote nature of the payment interaction. In this model, the marketplace acts on behalf of the retailer to process payments and settle funds into the retailer’s bank account. It contracts directly with the acquiring bank for payment acceptance and is recognized as the merchant of record, rather than the individual retailers. Additionally, the marketplace manages the end-to-end customer experience, including accepting payments and issuing transaction confirmations on behalf of the retailers. Re

MasterPass

MasterPass is a safe and easy way in which merchants can present the QR code which customers can scan using a MasterPass application to affect a payment. */Requirements/* Merchant must be onboarded for MasterPass on the iVeri Gateway and on the MasterPass platform.

MauCAS QR

MauCAS QR **

Merchant Hash Token Generation

Merchant Hash Token Generation * ** /* *secretKey - Lite Shared Secret *resource - /Lite/Authorise.aspx *applicationId - {435407B0-8A28-4152-9649-A932423F72EB} *amount - Lite_Order_Amount *emailAddress - Ecom_BillTo_Email */ public static string GenerateTransactionToken(string secretKey, string resource, string applicationId, string amount, string emailAddress) { string time = Convert.ToString(UnixTimeStampUTC()); string token = secretKey + time + resource + applicationId + amount + emailAddress; return String.Concat(time, ":" + GetHashSha256(token)); } public static Int32 UnixTimeStampUTC() { Int32 unixTimeStamp; DateTime currentTime = DateTime.Now; DateTime zuluTime = currentTime.ToUniversalTime(); DateTime unixEpoch = new DateTime(1970, 1, 1); unixTimeStamp = (Int32)(zuluTime.Subtract(u

Merchant Hash Token Generation

Then merchant token generation is a security measure introduced to hash merchant and transaction specific data elements, using SHA256 hashing algorithm. An effort which reduces the risk of data being exposed or intercepted by 3rd parties during the submission of transaction requests to the gateway.