woocommerce_api_delete_order_note action-hookWC 1.0

Usage

add_action( 'woocommerce_api_delete_order_note', 'wp_kama_woocommerce_api_delete_order_note_action', 10, 3 );

/**
 * Function for `woocommerce_api_delete_order_note` action-hook.
 * 
 * @param  $comment_ID 
 * @param  $order_id   
 * @param  $that       
 *
 * @return void
 */
function wp_kama_woocommerce_api_delete_order_note_action( $comment_ID, $order_id, $that ){

	// action...
}
$comment_ID
-
$order_id
-
$that
-

Where the hook is called

WC_API_Orders::delete_order_note()
woocommerce_api_delete_order_note
woocommerce/includes/legacy/api/v3/class-wc-api-orders.php 1493
do_action( 'woocommerce_api_delete_order_note', $note->comment_ID, $order_id, $this );
woocommerce/includes/legacy/api/v2/class-wc-api-orders.php 1448
do_action( 'woocommerce_api_delete_order_note', $note->comment_ID, $order_id, $this );

Where the hook is used in WooCommerce

Usage not found.