course__getUserList
Parameters:
p1: partition username
p2: course name
Return Type:
String
Description:
Returns each user (as a username) from course and from specified account as an XML <result> node.
Example (using Code Kit):// assumes partition username "anthony" exists
$data = APICommand( "course__getUserList", "anthony", "Sample Course" ); $xml = simplexml_load_string( $data );
foreach ( $xml->children() as $result ) { echo "{$result}<br>"; }