woocommerce_api_delete_customer action-hookWC 1.0

Usage

add_action( 'woocommerce_api_delete_customer', 'wp_kama_woocommerce_api_delete_customer_action', 10, 2 );

/**
 * Function for `woocommerce_api_delete_customer` action-hook.
 * 
 * @param  $id   
 * @param  $that 
 *
 * @return void
 */
function wp_kama_woocommerce_api_delete_customer_action( $id, $that ){

	// action...
}
$id
-
$that
-

Where the hook is called

WC_API_Customers::delete_customer()
woocommerce_api_delete_customer
woocommerce/includes/legacy/api/v3/class-wc-api-customers.php 462
do_action( 'woocommerce_api_delete_customer', $id, $this );
woocommerce/includes/legacy/api/v2/class-wc-api-customers.php 461
do_action( 'woocommerce_api_delete_customer', $id, $this );

Where the hook is used in WooCommerce

Usage not found.