For Acoustic Exchange to receive event data from Adobe Analytics, Adobe Analytics identifiers and attributes must be mapped to a Acoustic Exchange event.
By mapping Adobe Analytics identifiers and attributes to an Acoustic Exchange event, you can send event data to Exchange.
- Configure an identifier mapper object.
- Configure an attribute mapper object.
- Call the event name in:
adobe_ubx.sendEventFromJSONPayload(s, identifiersMapper, "<event name>", attributesMapper);
var identifiersMapper = [];
identifiersMapper.push({"adobeName":"visitorID",
"ubxName":"aaUserId"});
identifiersMapper.push({"name":"email",
"value":"CityCool@email.com"});
var attributesMapper = [];
attributesMapper.push({"adobeName":"prop10",
"ubxName":"productID", "type":"string"});
attributesMapper.push({"adobeName":"prop63",
"ubxName":"category", "type":"string"});
attributesMapper.push({"adobeName":"pageURL",
"ubxName":"productURL", "type":"string"});
attributesMapper.push({"adobeName":"prop3",
"ubxName":"productName", "type":"string"});
adobe_ubx.sendEventFromJSONPayload
(s, identifiersMapper, "ibmproductView", attributesMapper);
Comments
0 comments
Article is closed for comments.