accessing parameters sent with mboxUpdate in an offer | Community
Skip to main content
bani_k
October 16, 2015
Solved

accessing parameters sent with mboxUpdate in an offer

  • October 16, 2015
  • 1 reply
  • 2014 views

Hello, 

I have an mboxDefine() and after a certain condition i call the mboxUpdate() and also send some parameters along with. 

These parameters are seen in the network call as query parameters and also available in the associated parameter list of the corresponding location in test and target.

However, when I try to access these parameters in the offer itself through mboxCurrent.getParameters(), only the default parameters are available (browser width, screen height etc) and  not the custom params that I passed.

I have tried a bunch of things but so far have not been able to access the parameters in the offer itself. Any pointers will be helpful. Thanks.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by chongkan01

Can you try the following? 

- When saving the value with the mboxUpdate call, use: 

mboxDefine('myMbox'); mboxUpdate('myMbox', 'profile.myCustomValue='+myCustomValue);

- When reading the data in the offer, use:

<script> window.myCustomValue = profile.get('myCustomValue'); ... ... ... </script>

1 reply

chongkan01Accepted solution
Level 2
October 16, 2015

Can you try the following? 

- When saving the value with the mboxUpdate call, use: 

mboxDefine('myMbox'); mboxUpdate('myMbox', 'profile.myCustomValue='+myCustomValue);

- When reading the data in the offer, use:

<script> window.myCustomValue = profile.get('myCustomValue'); ... ... ... </script>