usergroup__getList
Parameters:
p1: partition username
Return Type:
String
Description:
Returns each usergroup name from specified account as an XML node.
Example (using Code Kit):// assumes partition username "anthony" exists
$data = APICommand( "usergroup__getList", "anthony" );
$xml = simplexml_load_string( $data );foreach ( $xml->children() as $result ) { echo "{$result}"; }