woocommerce_api_create_order_note_data

woocommerce_api_create_order_note_data

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_api_create_order_note_data') is found 2 times:

  • /includes/legacy/api/v2/class-wc-api-orders.php line 1303
    			}
    
    			$order = wc_get_order( $order_id );
    
    			$data = apply_filters( 'woocommerce_api_create_order_note_data', $data, $order_id, $this );
    
    			// note content is required
    			if ( ! isset( $data['note'] ) ) {
    				throw new WC_API_Exception( 'woocommerce_api_invalid_order_note', __( 'Order note is required', 'woocommerce' ), 400 );
    			}
    
    
  • /includes/legacy/api/v3/class-wc-api-orders.php line 1348
    			}
    
    			$order = wc_get_order( $order_id );
    
    			$data = apply_filters( 'woocommerce_api_create_order_note_data', $data, $order_id, $this );
    
    			// note content is required
    			if ( ! isset( $data['note'] ) ) {
    				throw new WC_API_Exception( 'woocommerce_api_invalid_order_note', __( 'Order note is required', 'woocommerce' ), 400 );
    			}