...
In legacy Blueshift you may be sending events that include the retailer_customer_id or customer_id in the event payload so that event gets recorded to the correct profile. In legacy Blueshift the customer_id is made up of a combination of the advantage customer number and email id. In the initial phase of Blueshift refactor onboarding you will want to remove this attribute from your custom events.
The refactored instance of Blueshift will be email centric meaning the email address there will be the main identifier for profile matchingalways be a one to one relationship with emails and profiles in Blueshift. The customer id will in the new instance is made up of the profile key which will be included by default as a URL parameter. This profile key (pk) is comprised of the affiliate id and email address which is MD5 hashed. The profile key can be passed back as the customer_id to tie an event back to a user profile with out needing to decode the vid2 value.
...