The wish list page is 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" : []
}
}
Do you find this information helpful? Please log in to provide feedback.
Last updated: Nov 06, 2017