For sub accounts, the whole point of creating them is to track usage, right? Well, since we have no UI, you'll want a way to see the information we have stored on a particular user under your main account. Use GetUserInfo to return information on a particular user:
<?xml version="1.0"?> <query> <userid>[UserID]</userid> <userkey>[UserKey]</userkey> <action>GetUserInfo</action> <action_user_id>[ActionUserID]</action_user_id> </query>
We'll return back this handy information:
<?xml version="1.0"?> <response> <action>getuserinfo</action> <status>Success</status> <result> <user_id>[ActionUserID]</user_id> <ID>[ActionUserID]</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> </result> </response>