bool RequestTMSUpdate(string)

Sends a request for a terminal update to the terminal management system.

Security

Trust Level Required: Full Trust

Parameters

Name Description
input string
Serialized JSON string with the following parameters from the EMVRequestInput class: (optional) DeviceName.

Return

True if the command was queued for processing, false otherwise.

Remarks

This call is implemented for ChipDNA and OTI/Apriva. Other EMV integrations may call it, but it does nothing.

Examples


var input = {
  "DeviceName": "MyDevice"
};
if (!KioEMVDevice.RequestTMSUpdate(input))
   alert('Failed to call RequestTMSUpdate!');

// callback fired when operation processed
function OnKioEMVTransactionCompleted(result) {
   alert('Operation returned: ' + lastTransResult.Result);
}

Requirements

KioWare for Windows version 8.14 or greater.