report__getUserInfo
Parameters:
p1: partition username
p2: user username
Return Type:
XML Dataset
Description:
Returns one or more results, each containing a string (tagged) containing the course name, progress percent, current average percent, current status, comprehensive average percent, comprehensive status, start date, completion date and time in course.
Example (using Code Kit):// assumes partition username "anthony" exists
// returns results for user named "Bill"
$data = APICommand( "report__getUserInfo", "anthony", "Bill" ); $xml = simplexml_load_string( $data );
foreach ( $xml->children() as $result ) { echo $result->getName() . ": " . $result . "<br>"; }