This method simply lists all the user accounts currently on the system.
Parameters Allowed
The following variable should be provided as part of the request XML in the HTTP POST request:
- password – A required parameter which the API uses to authenticate access to a page and which is set by your administrator.
Sample Request
<?xml version="1.0" encoding="UTF8"?>
<methodCall>
<methodName>user.list</methodName>
<params>
<param>
<value>
<struct/>
</value>
</param>
</params>
</methodCall>
Response
OK <?xml version="1.0" encoding="UTF8"?>
<methodResponse>
<params>
<param>
<value>
<array>
<data>
<value>
<string>
<![CDATA[test@xyz.com]]>
</string>
</value>
<value>
<string>
<![CDATA[test@thisdomain.net]]>
</string>
</value>
</data>
</array>
</value>
</param>
</params>
</methodResponse>