report__getUserTrainingSummary
Parameters:
p1: partition username
p2: user username
Return Type:
XML Dataset
Description:
Returns one or more results, each containing a string (tagged) containing the title, type and date of the completed training item.
Example (using Code Kit):// assumes partition username "admin" exists and username "bob" exists
$data = APICommand( "report__getUserTrainingSummary", "admin", "bob" );
$xml = simplexml_load_string( $data );foreach ( $xml->children() as $result ) {
echo $result->getName() . ": " . $result . "
";}