The release notes provided in V1 of this document serve as an initial preview of the changes expected in the upcoming production release scheduled for November 2025, on the Hosted Gateway.
Summary **
The Gateway release notes will contain information related to the new iVeri software release. The release notes will include the impact of software release to the intended target audience.
The release notes will adopt the format outlined below, as applicable:
Compliance*
Refers to the adherence of the
software to specific industry standards, regulations, or internal policies.
This includes ensuring that the software meets legal and regulatory
requirements, follows best practices, and aligns with established security
and quality
Optimisation*
The process of refining or
improving a software solu
/ Transaction Notification /*
**
/ Email to Merchant */
This is an order confirmation from the Payment Gateway to Lite Application.
We have received the following Sale from your customer:
Customer Details:
Name : Mr. John Doe
Email : John
Payment Details:
Transaction Type : Sale
Transaction Index : A0394EB4-BBC1-4567-BBCB-A56B702050DD
Merchant Reference : LITE0000028
Card Number : 4242........4242
Expiry Date : 092025
Acquirer Reference : 80903:09089990
Electronic Commerce Indicator : SecureChannel
Order Details:
Purchase DateTime : 2022-09-03 09:08:32
Total Order Amount : R 100.00
Line Item Details:
Item Description Quantity Unit Cost Line Total
-----------------------------------------------------
Donation product#1 1 100.00 100.00
Additional Info:
Please contact <Distributor> should yo
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
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.
Introduction *
**
Automatic Billing Updater (ABU) is a web service that provides access to updated account credentials (cards). This can be leveraged by Merchant/Acquirers/Payment Service Providers to ensure that they always have their customers’ most up to date card credentials for recurring and card-on-file payments.
Simply put, ABU allows card details to be updated automatically in the event they are no longer valid. Types of updates include:
Expiration dates Replacement card numbers Account closures Issuer brand changes to Visa and MasterCard
* Sign Up Process *
Need the sign up detail process. Where can a merchant access the IYS URL to sign up for a subscription.
In order to view and compare the IYS packages, user would need to scroll down to ‘Subscription solutions’.
The merchant is able to compare and select a solution that is fit for purpose.
For this example, we have selected the Unlimited option by clicking the ‘sign up now’ tab.
The billing details screen will appear.
The blue fields are mandatory fields that would need to be completed by the merchant.
The merchant would need to insert their personal details and setup their credentials to login to their IYS store.
Note: When setting up a password, enter a strong password that is at least twelve characters long and contains a combination of upper case, lower case, numeric
* Cardinal Posport Indigo Release Notes V 20231026 ***
The release notes contained in this document are available in iVeri’ s repository in production and can be installed on any Cardinal and or indigo installation on a case-by-case bases as agreed with Customers and or Integrators.
*/ Whats new /*
* PosPort *
"Single Tap" feature has been updated to cater for scenarios where the issuer does not support “Single Tap and Pin”. In such scenarios, the cardholder will be requested to dip the card, eliminating the need for PIN collection. An improvement on the reversal of an authorization has been introduced. Previously, authorizations reversed on a different day presented a challenge, but now the process has been updated so that these authorizations can be efficiently processed as "Authoriza
*How to Configure Shipping & Pick Up*
1.Use the left adjusted Menu Items, navigate to Shipping & Pickup – To set up your Shipping methods.
Choose your providers you will use to courier or ship the goods based on the aggreement you have with your partner.
Requirements *
**
Merchants must generate the token on their web server and pass the generated token to the transaction request. The generated token must encompass the following data elements:
Lite_Order_Amount: Total amount of the order Lite_Merchant_ApplicationId – The merchants app ID must be in uppercase and in curly brackets
Ecom_BillTo_Email - The cardholder Email address TimeStamp – The timestamp when the token is generated Resource - Lite/Authorise.aspx SharedSecret - as configured in the merchants application in backoffice
The parameters utilized in the hash token generation process must correspond exactly to those submitted via the form Post method to ensure token integrity and validation.
**