MergeAccount Method



 
The MergeAccount method merges the acount with another one.


Syntax

    Account.MergeAccount(index)
    
Parameters
    index Long value that specifies the index number of the account to merge with.
Return Value
    None.
Remarks
    None.
Examples
    The following example merges the first available account with the second available account.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
    account.MergeAccount(2);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top