Table of Contents



Overview

With this feature, users can be dynamically added to segments using values from a website, eliminating the need to install a separate pixel for every potential segment. For example, a retailer who wants to pass a brand name or product name (or both) when a user visits a product details page can use this solution to add the user to a specific segment in the platform. This feature must be enabled by the Beeswax team. To get started, please reach out to your Account Representative for more information.

How It Works

  1. Create a New Segment

  2. Name the Segment

  3. Define the Alternative ID

  4. Select the Tag Type

  5. Save and Generate Tag

    <img src="https://segment.prod.bidr.io/associate-segment?buzz_key=buzzkey&segment_alt_id=shamim&account_id=1&value=" height="0" width="0">
  6. Install the Pixel


Using a Single Segment Tag to Populate Multiple Segments with Alternative IDs

The segment tag can be configured to add a user to multiple segment keys within the Beeswax platform. This is done by specifying multiple segment_alt_id parameters in the segment URL.

Example of Adding Multiple Segments:

 <img src="https://segment.prod.bidr.io/associate-segment?buzz_key=buzzkey&segment_alt_id=shamim&segment_alt_id=ari&segment_alt_id=ram" height="0" width="0"> 

If a value is needed for each user-segment association, specify the value parameter in the same order as the segment_alt_id parameters.

Example with Value Assignments:

To assign a value of 1.5 to shamim and 3.6 to ari, use either of the following:

Option 1:

 <img src="https://segment.prod.bidr.io/associate-segment?buzz_key=buzzkey&segment_alt_id=shamim&segment_alt_id=ari&value=1.5&value=3.6" height="0" width="0"> 


Option 2:

 <img src="https://segment.prod.bidr.io/associate-segment?buzz_key=buzzkey&segment_alt_id=shamim&value=1.5&segment_alt_id=ari&value=3.6" height="0" width="0"> 

If you want to assign values to only some segments, make sure an empty &value= parameter is included for each segment that does not receive a value. This ensures that the key-to-value order is maintained. The number of value parameters must match the number of segment_alt_id parameters.


Limits