Hello Yasmine,
the $_POST no longer has data by the time I use my hook: add_action('save_post_research', 'manage_save_automations', 10, 3);
How do you print out the $_POST variable to check if it has data? I use the sample code below and it prints out the value as well.
add_action( 'save_post_research', function( $post_id, $post, $update ) {
echo "<pre>";
print_r( $_POST );
echo "</pre>";
die('12345');
}, 10, 3 );