woocommerce_api_update_customer_data action-hookWC 1.0

Usage

add_action( 'woocommerce_api_update_customer_data', 'wp_kama_woocommerce_api_update_customer_data_action', 10, 3 );

/**
 * Function for `woocommerce_api_update_customer_data` action-hook.
 * 
 * @param  $id       
 * @param  $data     
 * @param  $customer 
 *
 * @return void
 */
function wp_kama_woocommerce_api_update_customer_data_action( $id, $data, $customer ){

	// action...
}
$id
-
$data
-
$customer
-

Where the hook is called

WC_API_Customers::update_customer_data()
woocommerce_api_update_customer_data
woocommerce/includes/legacy/api/v3/class-wc-api-customers.php 335
do_action( 'woocommerce_api_update_customer_data', $id, $data, $customer );
woocommerce/includes/legacy/api/v2/class-wc-api-customers.php 334
do_action( 'woocommerce_api_update_customer_data', $id, $data, $customer );

Where the hook is used in WooCommerce

Usage not found.