Fetch from Product Feed
findProduct Function
Examples
Find a Product by its SKU
{{#findProduct user.[traits.favoriteProductSku]}}
{{[properties.image]}}
{{/findProduct}}Get the remaining Stock Count for products in the Cart
{{#includeProducts '{
"cartProducts": true,
"options": {
"maxResults": 3,
"sortBy": "properties.price",
"desc": true,
"distinct": true
}
}'
}}
{{#findProduct [properties.sku]}}
{{[properties.stockRemaining]}}
{{/findProduct}}
{{/includeProducts}}#findProduct extension to search a list (also within another product)
Last updated