report__getUserCourseInfo
Parameters:
p1: partition username
p2: user username
p3: course name
Return Type:
XML Dataset
Description:
Returns one or more results, each containing a string (tagged) containing the item, item type, score and status.
Example (using Code Kit):// assumes partition username "anthony" exists
// returns results for course named Sample Course
$data = APICommand( "report__getUserCourseInfo","anthony","Bill","Sample Course" ); $xml = simplexml_load_string( $data );
foreach ( $xml->children() as $result ) { echo $result->getName() . ": " . $result . "<br>"; }