user__getUsername
Parameters:
p1: partition username
p2: user’s id
Return Type:
String
Description:
Returns username of a user based on their record id (which is returned by some calls instead of username)
Example (using Code Kit):// assumes partition username "anthony" exists and user id "5" exists
$data = APICommand( "user__getUsername", "anthony", "5" );$xml = simplexml_load_string( $data );
echo $xml->result;