Wishlist page
Tracked by providing a list of all products in the wish list.
Name | Description and usage | ||
---|---|---|---|
wishList | Element containing wish list specific sub-elements | ||
items | List of checkout items. | ||
refCode | [String] Product reference code. |
A wish list page is tracked using the following script. The example shows a wish list with two items in total, PROD500 and PROD600.
{
"type" : "wishlist",
"lang" : "en-gb",
"wishList" : { "items" : [ { "refCode" : "PROD500" }, { "refCode" : "PROD600" } ] }
}
If a user’s wish list is empty, the page is tracked using the following script.
{
"type" : "wishlist",
"lang" : "en-gb",
"wishList" : { "items" : [] }
}
Note
You can also add the
customAttributes
orcustomer
elements to this page tracking request. For more information, see AddcustomAttributes
orcustomer
elements (Optional).
Updated 9 months ago