My Wishlist

Get a list of products in the wishlist

get

Retrieve a list of products in the customer's wishlist with pagination support.

Query parameters
limitintegerRequired

The number of wishlist products to return.

Default: 5
offsetintegerRequired

The offset for pagination of wishlist products.

Default: 0
Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

Default: electronics
keystringOptional

The unique key for the request.

Default: 8097571064818418
languagekeystringOptional

The language key for the request.

Default: 57
Responses
200

Successfully fetched the wishlist product list

get
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>

Remove a product from the wishlist

delete

Delete a product from the customer's wishlist based on the product ID.

Path parameters
idintegerRequired

The ID of the product to remove from the wishlist.

Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

Default: electronics
keystringOptional

The unique key for the request.

Default: 8097571064818418
languagekeystringOptional

The language key for the request.

Default: 57
Responses
200

Product successfully removed from the wishlist

delete
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