Question about algorithm "People Who Viewed This, Bought That" or "People Who Bought This, Bought That" | Adobe Higher Education
Skip to main content
Level 2
February 16, 2022
Beantwortet

Question about algorithm "People Who Viewed This, Bought That" or "People Who Bought This, Bought That"

  • February 16, 2022
  • 1 Antwort
  • 779 Ansichten

Hi,

 

When we use any of these algorithms ("People Who Viewed This, Bought That" or "People Who Bought This, Bought That"), I assume, Target uses some parameters which indicate that products were actually bought by the end users. My question is, does Target really use product 'buy' information? If yes, how do we pass this information to Target?

 

thanks

Dieses Thema wurde für Antworten geschlossen.
Beste Antwort von evidana

Correct. You need to tell Target that a product was viewed (mbox param named entity.id) or that a purchase happened. I grabbed this from https://experienceleague.adobe.com/docs/target/using/implement-target/client-side/at-js-implementation/deploy-at-js/implementing-target-without-a-tag-manager.html?lang=en

 

<script type="text/javascript"> 
adobe.target.trackEvent({ 
    "mbox": "orderConfirmPage", 
    "params":{  
        "orderId": "ORDER ID FROM YOUR ORDER PAGE",  
        "orderTotal": "ORDER TOTAL FROM YOUR ORDER PAGE",  
        "productPurchasedId": "PRODUCT ID FROM YOUR ORDER PAGE, PRODUCT ID2, PRODUCT ID3"  
    } 
}); 
</script> 

 

1 Antwort

evidanaCommunity AdvisorAntwort
Community Advisor
February 24, 2022

Correct. You need to tell Target that a product was viewed (mbox param named entity.id) or that a purchase happened. I grabbed this from https://experienceleague.adobe.com/docs/target/using/implement-target/client-side/at-js-implementation/deploy-at-js/implementing-target-without-a-tag-manager.html?lang=en

 

<script type="text/javascript"> 
adobe.target.trackEvent({ 
    "mbox": "orderConfirmPage", 
    "params":{  
        "orderId": "ORDER ID FROM YOUR ORDER PAGE",  
        "orderTotal": "ORDER TOTAL FROM YOUR ORDER PAGE",  
        "productPurchasedId": "PRODUCT ID FROM YOUR ORDER PAGE, PRODUCT ID2, PRODUCT ID3"  
    } 
}); 
</script>