woocommerce_api_edit_customer action-hook . WC 1.0
Usage
add_action( 'woocommerce_api_edit_customer', 'action_function_name_6969', 10, 2 ); function action_function_name_6969( $customer_id, $data ){ // action... }
- $customer_id
- -
- $data
- -
Where the hook is called
woocommerce/includes/legacy/api/v2/class-wc-api-customers.php 436
do_action( 'woocommerce_api_edit_customer', $customer->get_id(), $data );
woocommerce/includes/legacy/api/v3/class-wc-api-customers.php 437
do_action( 'woocommerce_api_edit_customer', $customer->get_id(), $data );