You can map identifiers that are not recognized by Adobe Analytics to Acoustic Exchange identifiers provided that they are registered in the Acoustic Exchange identifier repository.
There can be some cases where you want to map identifiers, that are unrecognized by Adobe Analytics, to Acoustic Exchange identifiers. These unrecognized Adobe Analytics identifiers usually consist of Personally Identifiable Information (PII), such as an email address.
To map unrecognized Adobe Analytics identifiers to Acoustic Exchange identifiers, you must enter the identifier name into the identifier field name and the identifier value into the identifier value field.
Additionally, unrecognized Adobe Analytics identifiers can be mapped in the same mapper object as recognized Adobe Analytics identifiers by combining the two types of mapper arrays in the same mapper object. See the example for details.
Use the following mapper array as a template for your identifier mapper object.
var identifiersMapper = [];
identifiersMapper.push({"name":"<identifierName1>","value":"<value1>"});
identifiersMapper.push({"name":"<identifierName2>","value":"<value2>"});
identifiersMapper.push({"name":"<identifierName3>","value":"<value3>"});
identifiersMapper.push({"name":"<identifierName4>","value":"<value4>"});
- Enter the name of the mapper object in the
identifiersMapper
field. - Enter the identifier name in the
identifierNameN
field. - Enter the identifier value in the
valueN
field.
var identifiersMapper = [];
identifiersMapper.push({"adobeName":"visitorID","ubxName":"aaUserId"});
identifiersMapper.push({"name":"email","value":"CityCool@email.com"});
Comments
0 comments
Article is closed for comments.