| Syntax |
$account.create{account_name}{template_path}{admin_name}{admin_password} |
| Documentation | Creates an account
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.
|
| Examples | |
How to create an account:
$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}} } ... |
|
| Group | Special |
| Minimum required transaction-mode: | READ=IO |
| Required scripting permission of the developer | PERMISSION_FL_EXPERT |
| Minimum parameters | 4 |
| Maximum parameters | 5 |