Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
We have experience event schema where we are storing the customer purchase history.
I want to personalise productName from product Array which is stored in experienceEvent class schema.
I have written personalization like the below but it's not working.
{{profile.timeSeriesEvents._tenant.products.productName}}
Solucionado! Ir para a Solução.
Visualizações
respostas
Total de curtidas
To my knowledge this is not possible. You don't have access to experience event data in AJO message personalization. Neither in ODE.
That's even though the UI seems to allow that.
Visualizações
respostas
Total de curtidas
To my knowledge this is not possible. You don't have access to experience event data in AJO message personalization. Neither in ODE.
That's even though the UI seems to allow that.
Visualizações
respostas
Total de curtidas
Yes. Just saw the documentation. we can not use events in personalization.
Here is the link
Visualizações
respostas
Total de curtidas
Hello @vkt1989
I am assuming you want to personalize the email with this data. If this data is coming via event then you can use the journey context to personalize it. You will have to pass these details in the event payload and XDM object to save it.
Then it can be used in the message.
For eg, a Product from the order can be accessed like this.
{{#each context.journey.events.0000000.productListItems as |product|}} <tr> <td align="left" bgcolor="#ffffff" style="padding: 5px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;"> <p style="margin: 0;">{{product.name}}</p> </td> <td align="left" bgcolor="#ffffff" style="padding: 5px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;"> <p style="margin: 0;">{{product.quantity}}x</p> </td> <td align="left" bgcolor="#ffffff" style="padding:5px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;"> <p style="margin: 0;">${{product.priceTotal}}</p> </td> </tr> {{/each}}
Visualizações
respostas
Total de curtidas
We want to personalize timeseries attributes in a Marketing campaign. The above will work only in case of events I believe.
Visualizações
respostas
Total de curtidas
We had the same issue indeed. Eventually we had to do a workaround where we stored certain data on a profile level (create a field and use 'update profile' in journey). Then you can use that data in marketing campaigns, bit ugly, but it works.
Visualizações
respostas
Total de curtidas
Yes but this workaround is only for a particular use-case & can not be used as a foolproof solution.
Visualizações
respostas
Total de curtidas
is it still not possible to use contextual attributes (streaming through time series event) in personalization?
Visualizações
respostas
Total de curtidas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas