Hello guys,
How can I match customer id from mbox with customer id uploaded via Customer Attribute? Basically my customer attribute provides me the client to be targeted for my recommendation and I want to see if customer id sent via mbox is bewteen my Customer Attribute List.
If it is not possible, any suggestion?
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Luca_Lattarini,
If you have a data source setup for Customer Attributes you can ensure that customer IDs are properly synced to Target in one of 2 ways.
<script type="text/javascript">
function targetPageParams() {
return 'mbox3rdPartyId=2000578';
}
</script>
Hope that helps
Views
Replies
Total Likes
Hi @Luca_Lattarini,
If you have a data source setup for Customer Attributes you can ensure that customer IDs are properly synced to Target in one of 2 ways.
<script type="text/javascript">
function targetPageParams() {
return 'mbox3rdPartyId=2000578';
}
</script>
Hope that helps
Views
Replies
Total Likes
Views
Replies
Total Likes
Sorry it was clearer, that's just meant to be an example customer id value that is getting passed. You replace 2000578 with your customer id for the visitor.
Views
Replies
Total Likes
Yes, I am using customer id as you mentioned. Now Im injecting data to AT in order to determine the most viewed product. Is it correct the approach below? I am using Adobe Launch and I placed this code in custom code script.
function targetPageParams() {
return {
"entity": {
"id": xxx,
"categoryId": xxx
},
"mbox3rdPartyId": digitalData.user.id
}
};
Views
Replies
Total Likes
Yeah, custom code option will work and your code looks good to me for passing entity data along with the mbox 3rd party id. A formatted sample:
function targetPageParams() {
return {
"entity": {
"id": xxx,
"categoryId": xxx
},
"mbox3rdPartyId": digitalData.user.id
}
};
Views
Replies
Total Likes
Views
Like
Replies
Views
Likes
Replies
Views
Likes
Replies