This action runs when a user updates his/her profile.
do_action('pm_update_user_profile',$user_id);
Simple example
function ProfileGrid_update_profile($user_id) { //do something with the user id when someone updates the profile. } add_action( 'pm_update_user_profile', 'ProfileGrid_update_profile');