certifications__extend
Parameters:
p1: partition username
p2: certification number
p3: new date (YYYYMMDD format)
Return Type:
Boolean (true or false)
Description:
Extends the expiration date (and CEU window) for a certification. Function returns false if certification is not found, if date is invalid, if certification has already expired, or if date is before today’s date, otherwise it returns true.
Example (using Code Kit):// assumes partition username "admin" exists and certification number c12345 exists
$data = APICommand( "certifications__extend", "admin", 'c12345', '20201231');$xml = simplexml_load_string( $data );
echo $xml->result;