Use Response Token inside Profile Script | Community
Skip to main content
Level 2
July 14, 2020
Solved

Use Response Token inside Profile Script

  • July 14, 2020
  • 1 reply
  • 2252 views

Hello, I would like to be able to use response token data inside a profile script. 

 

My task is to use "activity.name" as a profile script value so that I can count the amount of time this activity was seen and apply frequency capping.

 

for example, if activity views are < x, display activity, otherwise don't.

 

return activity.name;

 

simply using this is not returning anything.

 

 

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 ryanr7

Response tokens are not available for profile scripts. Profile scripts run before response tokens are generated. However, to achieve your use case, one option I can think of would be including a trackEvent in your activity to trigger a second call back to Target to tell a profile script an activity view happened. For example, you could add this trackEvent to your experiences as a custom modification:

 

<script> adobe.target.trackEvent({"mbox":"activityViewNotify", "params":{"activityName":"${activity.name}"}}); </script>

 

Then you could have the profile script look for the activityViewNotify mbox and the value of the activityName parameter to determine the count.

Note the ${activity.name} token is not a response token but has the same value. It's dynamic data in an offer as used here.

1 reply

ryanr7Adobe EmployeeAccepted solution
Adobe Employee
July 14, 2020

Response tokens are not available for profile scripts. Profile scripts run before response tokens are generated. However, to achieve your use case, one option I can think of would be including a trackEvent in your activity to trigger a second call back to Target to tell a profile script an activity view happened. For example, you could add this trackEvent to your experiences as a custom modification:

 

<script> adobe.target.trackEvent({"mbox":"activityViewNotify", "params":{"activityName":"${activity.name}"}}); </script>

 

Then you could have the profile script look for the activityViewNotify mbox and the value of the activityName parameter to determine the count.

Note the ${activity.name} token is not a response token but has the same value. It's dynamic data in an offer as used here.

Adobe Employee
July 15, 2020

@corralesdmboxes don't need to "prepopulate" to that dropdown in the profile script edit view before you can use them in a profile script. You can copy a different mbox reference and then just update the name in the script. As long as the script part contains the correct names you are good. The dropdown is just for reference/help it does not provide any functionality to the script.