addFavoriteProduct
Add a product to the favorites list for the logged-in customer.
RivoJS.addFavoriteProduct(productId).then(function(resp){
console.log(resp)
});
Parameters
Parameter | Type | Description |
---|---|---|
productId | Number | The unique identifier of the product to be added to favorites. |
Sample response
{
"success": true,
"products": [
{
"remote_id": 8453968003367,
"title": "Selling Plans Ski Wax",
"handle": "selling-plans-ski-wax",
"image_url": "https://cdn.shopify.com/s/files/1/0794/1898/2695/products/snowboard_wax.png?v=1689664191",
"price": 24.95,
"variants": [
{
"id": "45630227022119",
"price": 24.95,
"title": "Selling Plans Ski Wax",
"image_url": "https://cdn.shopify.com/s/files/1/0794/1898/2695/products/snowboard_wax.png?v=1689664191"
}
],
"compare_at_price": null
}
]
}
Updated about 14 hours ago