Expand my Community achievements bar.

Join us for an upcoming in-person Adobe Target Skill Builders event ~~> We're hosting these live learning opportunities to equip you with the knowledge and skills to leverage Target successfully. Learn more to see if we'll be coming to a city near you!
SOLVED

Debugging custom attribute returned value into experience

Avatar

Level 1

Hi, 

 

I'm looking to get the value of a custom attribute dynamically logged into one experience. We have a custom attribute set up as 'Customer Attributes.lifestage'. I know that this is server side data by is there a way I can return this value straight into the custom code area of an A/B experience. 

 

I do not want to set this up as an audience as we want to dynamically change the copy based on the customer attribute value. For example, something like:

if (CustomerAttr.lifestage === "Retired") {
console.log('User is retired');
} else {
console.log('User is not retired');
}

Any help is appreciated! 

Thanks

Sam

1 Accepted Solution

Avatar

Correct answer by
Level 9

Audiences are better options as it has wide range for similar implementation via ContentHub or mbox parameter etc...

but if you dont want to go that route then

 

There are other approaches i can suggest (going on more level deeper not handling at audience rather through offer)

1. via passing setting and getting through contexthub and using that attribute in your HTML offer

2. or create client side object and use those in HTML offer

 

or 

even you can handle it through globalmbox if this scenario spreaded across site.

 

hope it helps!!

View solution in original post

3 Replies

Avatar

Correct answer by
Level 9

Audiences are better options as it has wide range for similar implementation via ContentHub or mbox parameter etc...

but if you dont want to go that route then

 

There are other approaches i can suggest (going on more level deeper not handling at audience rather through offer)

1. via passing setting and getting through contexthub and using that attribute in your HTML offer

2. or create client side object and use those in HTML offer

 

or 

even you can handle it through globalmbox if this scenario spreaded across site.

 

hope it helps!!

Avatar

Employee Advisor

I guess

if(${crs.aliasid.columnname} == 'somevalue')

{ //Do something }

Else{do nothing}

would work.

Avatar

Community Advisor

Did you try ResponseTokens? Customer Attributes are available under Response Tokens so you can view value under Preview of Adobe Target response under Developer Tools.

 

Regards,

Rajneesh