My Wishlist
Retrieve a list of products in the customer's wishlist with pagination support.
The number of wishlist products to return.
5
The offset for pagination of wishlist products.
0
Optional Bearer token for authentication.
The industry of the user.
electronics
The unique key for the request.
8097571064818418
The language key for the request.
57
Successfully fetched the wishlist product list
Bad request, invalid parameters
Internal server error
GET /backend/api/customer/wishlist-product-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully show the wishlist product list</message>
</object>
Delete a product from the customer's wishlist based on the product ID.
The ID of the product to remove from the wishlist.
Optional Bearer token for authentication.
The industry of the user.
electronics
The unique key for the request.
8097571064818418
The language key for the request.
57
Product successfully removed from the wishlist
Bad request, invalid parameters
Product not found in the wishlist
Internal server error
DELETE /backend/api/customer/wishlist-product-delete/{id} HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>You have successfully remove from wishlist</message>
</object>
Last updated