| Syntax |
$account.create{account_name} |
| Documentation | Set a new name for the current account
Returns:
|
| Examples | |
How to get the names of all accounts:
$//Get the name of the next account and store it in the variable name $set{name}{$account{getName}{$get{id}} ... } 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: | UPDATE=TREE |
| Required scripting permission of the developer | PERMISSION_FL_EXPERT |
| Minimum parameters | 1 |
| Maximum parameters | 1 |