MergeUserAccount Method
The MergeUserAccount method merges the account using username and password.
Syntax
SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
MergeUserAccount(username, password)
|
Parameters
username |
String that specifies the username. |
password |
String that specifies the password. |
Return Value
Remarks
Examples
The following example merges the account using username and password.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
SiteCafe.MergeUserAccount("user", "password");
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top