Adding a web user
To add a web user, specify his login name and the ID of the domain where you want to add the new web user. The password is not specified, so the user cannot login until the password is set by the administrator.
<packet version="1.4.2.0">
<webuser>
<add>
<domain-id>12</domain-id>
<login>myWebAccount</login>
</add>
</webuser>
</packet>
Adding multiple web users
To add more than one web user in a single packet, include two different add operations:
<packet version="1.4.2.0">
<webuser>
<add>
<domain-id>12</domain-id>
<login>FirstWebUser</login>
<password>1a3b5c</password>
<ftp-quota>150</ftp-quota>
<php>1</php>
</add>
<add>
<domain-id>12</domain-id>
<login>SecondWebUser</login>
<fastcgi>0</fastcgi>
</add>
</webuser>
</packet>