Visitor identification
The Hybrid library allows you to associate data with a specific visitor, such as a unique identifier, social media IDs, demographic data, etc.
Call the following JavaScript code from your web page to identify a visitor:
<script>
_txq.push(['identify', 'CUSTOMER_ID', IDENTIFY_CONTENT, USER_CONTENT ]);
</script>
where:
CUSTOMER_ID
is a unique customer identifier (required).IDENTIFY_CONTENT
is an object of unique visitor identifiers (optional).USER_CONTENT
is a visitor data object (optional).
Last updated