woocommerce_fraud_protection_event_data

woocommerce_fraud_protection_event_data

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.10.5.2

apply_filters('woocommerce_fraud_protection_event_data') is found 1 times:

  • /src/Internal/FraudProtection/FraudProtectionDispatcher.php line 124
    			 *
    			 * @param array  $collected_data Fully-collected event data including session context.
    			 * @param string $event_type     Event type identifier (e.g., 'cart_item_added').
    			 */
    			$collected_data = apply_filters( 'woocommerce_fraud_protection_event_data', $collected_data, $event_type );
    
    			// Send event to API and get decision.
    			$decision = $this->api_client->send_event( $event_type, $collected_data );
    
    			// Apply decision via DecisionHandler.
    			$this->decision_handler->apply_decision( $decision, $collected_data );