formcierge_after_entry_data_update
Action

Since v1.0.0

Fires after an individual entry field value has been updated via the admin entry editor. Use to sync the updated value to an external system.

Parameters
$entry_id int The entry ID.
$field_id string The field ID whose value was changed.
$value mixed The new value.
Defined in
includes/Controllers/EntryController.php
add_action( 'formcierge_after_entry_data_update', function ( $entry_id, $field_id, $value ) {
    my_crm_update_field( $entry_id, $field_id, $value );
}, 10, 3 );