This method will enable you to provide your users with the ability to load funds in the customer's wallet in the system. The payer will be requested with entering the reciepent email address to receive the funds
In our platform, secure links use epoch expiration timestamps in GMT (UTC) to control their validity. This guide explains how to calculate and use epoch expiration timestamps.
An epoch timestamp is the number of seconds since January 1, 1970, 00:00:00 GMT (UTC).
January 1, 1970, 00:00:00 GMT (UTC)
Decide how long the link should be active (e.g., 60 minutes).
DateTime nowUtc = DateTime.UtcNow; DateTime expirationTime = nowUtc.AddMinutes(60); long epochExpiration = (long)(expirationTime - new DateTime(1970, 1, 1)).TotalSeconds;
var now = Math.floor(Date.now() / 1000); // Current time in seconds (GMT) var expirationEpoch = now + (60 * 60); // 60 minutes in seconds
Use an online epoch converter tool, set the desired expiration in GMT, and get the epoch timestamp.
learn how to process SALE request.
Learn how to process an APM request.
Use the product pages (Voucher Template).