Let's say you've made a ton of subusers, but want information back as a whole on all the users you've created. Send the following to the API…
<?xml version="1.0"?> <query> <!-- Main fields --> <userid>[UserID]</userid> <userkey>[UserKey]</userkey> <action>getsubusers</action> </query>
and you'll get in return a complete list of who's who for sub users:
<?xml version="1.0"?> <response> <action>getsubusers</action> <status>Success</status> <result> <user_id></user_id> <user_0> <ID>[UserID]</ID> <Login>[Login]</Login> <FirstName>[FirstName]</FirstName> <LastName>[LastName]</LastName> <Email>[Email]</Email> <UserKey>[UserKey]</UserKey> <Country>[Country]</Country> <Phone>[Phone]</Phone> <Status>[Status]</Status> </user_0> <user_1> <ID>[UserID]</ID> <Login>[Login]</Login> <FirstName>[FirstName]</FirstName> <LastName>[LastName]</LastName> <Email>[Email]</Email> <UserKey>[UserKey]</UserKey> <Country>[Country]</Country> <Phone>[Phone]</Phone> <Status>[Status]</Status> </user_1> </result> </response>