Adobe Target: how to map parameter to mbox3rdPartyId

Bronze Contributor
Bronze Contributor

 In the Adobe documentation here they advise to set mbox3rdPartyId like this:

<script type="text/javascript">
            function targetPageParams() {
               return 'mbox3rdPartyId=2000578';
            }
</script>

 

How to map this in TiQ? I can see you can map to targetPageParams:

2019-01-30_16-49-36.jpg

But what is the correct syntax here? "targetPageParams.mbox3rdPartyId"?

2 REPLIES 2

Adobe Target: how to map parameter to mbox3rdPartyId

Employee Emeritus

Hi @jusaha,

My understanding here is that you would map to targetPageParams

The value being mapped should be an object containing the key/value pairs.

{ "mbox3rdPartyId": "2000578" } => targetPageParams

Can you give that a try?

Regards,

Ribal

Adobe Target: how to map parameter to mbox3rdPartyId

Bronze Contributor
Bronze Contributor

I tried this, that actually seems to work: targetPageParams.mbox3rdPartyId

Public