gradebook__getReportCard
Parameters:
p1: partition username
p2: course name
p3: username
Return Type:
String
Description:
Returns one or more results, each containing a string (tagged) containing the user report card data from specified course.
Example (using Code Kit):// assumes partition username "anthony" exists
// returns report card for Bob in Sample Course
$data = APICommand( "gradebook__getReportCard", "anthony", "Sample Course", "Bob" );
$xml = simplexml_load_string( $data );echo $xml->result;