Expand my Community achievements bar.

Applications for the 2024 Adobe Target Community Mentorship Program are open! Click to the right to learn more about participating as either an Aspirant, to professionally level up with a new Certification, or as a Mentor, to share your Adobe Target expertise and inspire through your leadership! Submit your application today.
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.