How to join the collector's information to customer identification

One of the processes necessary for collecting the information on the behavior in your website is visitor identification.

When visitors are anonymous, they become easy to identify if you opt for one of the methods below.

We can connect the information received from the collector to the identity of the customer/visitor in two ways:

  • Visitor ID: This ID is created by Konduto during the user's session on your site. To use this form of identification and thus reclaim our Visitor ID, implement the code below:
	<script type="text/javascript">  
	         var visitor_id = Konduto.getVisitorID();
</script>
  • Customer ID: an exclusive identifier of the customer defined by the store. To choose this form of ID, you need to implement the code below:
	<script type="text/javascript">  
	         var visitor_id = Konduto.getVisitorID();
</script>

Note: You must choose only one form of identifying the visitor of your site according to your preference and the limits of your application.