certifications__getUserInfo
Parameters:
p1: partition username
p2: user username
Return Type:
String
Description:
Returns certification data for the specified user - each as an XML node.
Example (using Code Kit):// assumes partition username "anthony" exists and username "bob123" exists
$data = APICommand( "certifications__getUserInfo", "anthony", "bob123" );
$xml = simplexml_load_string( $data );foreach ( $xml->children() as $result ) { echo "{$result}
"; }