Expand my Community achievements bar.

SOLVED

ttMETA mboxName as undefined

Avatar

Community Advisor

Hi Experts,

 

I have implemented ttMETA plugin using Adobe Launch. The code I have picked from target help doc.

However I am seeing undefined under "MboxName":


CODE OF ttMETA:
window.ttMETA.push(
{
'CampaignName': token["activity.name"],
'CampaignId' : token["activity.id"],
'RecipeName': token["experience.name"],
'RecipeId': token["experience.id"],
'OfferId': token["option.id"],
'OfferName': token["option.name"],
'MboxName': e.detail.mbox
});

RESPONSE of ttMETA:

CampaignId: "318808"

CampaignName: "POC"

MboxName: undefined

OfferId: "3"

OfferName: "Offer3"

RecipeId: "1"

RecipeName: "Experience B"


Can anybody advise why am I getting this undefined under mbox name ?

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi @ambikaTewari_ATCI 

 

Are you using 2.x library? 

This may happen with the use of 2.x library as with this new version target call does not pass mbox name as a parameter anymore.

View solution in original post

3 Replies

Avatar

Correct answer by
Employee Advisor

Hi @ambikaTewari_ATCI 

 

Are you using 2.x library? 

This may happen with the use of 2.x library as with this new version target call does not pass mbox name as a parameter anymore.

Avatar

Community Advisor
Yes @Tanvi, I am using at.js 2.x . Got it, this has page load concept. Thank you for this info.