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_IDis a unique customer identifier (required).IDENTIFY_CONTENTis an object of unique visitor identifiers (optional).USER_CONTENTis a visitor data object (optional).
Last updated