Documentation

Wishlist

Get wishlist, add/remove products, and move wishlist item to cart

Last updated: Feb 09, 2026

Wishlist

Note: All wishlist endpoints require authentication. Requires the wishlist feature flag to be enabled.

Get Wishlist

Get wishlist items.

GET /api/v1/customer/wishlist

Add to Wishlist

Add product to wishlist.

POST /api/v1/customer/wishlist/add
Request Body:
{
  "product_id": 5
}

Remove from Wishlist

Remove item from wishlist.

DELETE /api/v1/customer/wishlist/{id}

Move to Cart

Move wishlist item to cart.

POST /api/v1/customer/wishlist/{id}/move-to-cart