removeFromWishList
Este método serve para remover o produto da wishlist.
Method
GET
/api/api.php/removeFromWishList/{pid}/{sku_family}
Parameters
{pid}
product_id
Required
Type: int
{sku_family}
Required
Type: string
Response objects
Example
<script>
var pid = "4";
$.get( "https://accelerator56.redicom.work/api/api.php/removeFromWishList/"+pid)
.done(function() {
$(that).parents(".col-md-4.col-sm-6.col").remove();
});
</script>