$account.create

Creates, an account.
Syntax
    $account{create}{account_name}{template_path}{admin_name}{admin_password}
    $account.create{account_name}{template_path}{admin_name}{admin_password}
DocumentationCreates an account
    Parameters:
      account_name, the name of the account to be created.
      template_path, the relativ account template path ot be used for the account.
      admin_name, the name of the administrator user of the account.
      admin_password, the password of the administrator user of the account.
    Returns:
      the id of the created account.
Examples
How to create an account:

    $set{name}{myAccount}
    $set{uid}{admin}
    $set{pwd}{admin}
    $set{template}{some_template.zip}

    $//Check if an account named 'myAccount' exists. If not create it.
    if {$account{exists}{$get{name}}}
      {
      }
      {
      $account{create}{$get{name}}{$get{template}}{$get{uid}}{$get{pwd}}
      }

    ...
GroupSpecial
Minimum required transaction-mode:READ=IO
Required scripting permission of the developerPERMISSION_FL_EXPERT
Minimum parameters4
Maximum parameters 5