GraphQL Methods for Multiple Wishlist Extension

Multiple Wishlist API

Info
We have created a public API collection for Multiple Wishlist module with all available queries and sample data that you can both test via our demo endpoints and copy to run local tests in your Magento environment. More details about using public collections can be found in the following FAQ post.

1. Amasty\MWishlist\Api\WishlistRepositoryInterface - class for managing wishlists.
  1. POST /V1/amasty_mWishlist/wishlist, method="save" - create a wishlist;
  2. PUT /V1/amasty_mWishlist/wishlist/:wishlistId, method="save" - edit a wishlist;
  3. DELETE /V1/amasty_mWishlist/wishlist/:wishlistId, method="deleteById" - delete a wishlist;
  4. GET /V1/amasty_mWishlist/wishlist, method="getById" - get details about a wishlist;
  5. GET /V1/amasty_mWishlist/wishlist/all, method="getList" - get a list of all wishlists.

      • Related Articles

      • What Amasty extensions support API?

        Each Amasty extension that has API support, includes the etc/webapi.xml file. The webapi.xml file contains API configurations with the list of available API requests. For example, a request from the Custom Form module interface: 1 - endpoint URL; 2 - ...
      • Can I test how your modules work with API?

        Our team have created a public Postman workspace where we provide access to API collections from our modules. You can copy these API collections to test them in your own Magento installation together with our modules, and some collections can be ...
      • Multiple Wishlist | GraphQL methods

        Query amGetWishlists description: get array of wishlists for the requested page amGetRecentlyUpdatedWishlists description: get recently updated wishlists Mutations amCreateWishlist description: create new wishlist amAddProductsToWishlist description: ...
      • Multiple Coupons API

        We have created a public API collection for Multiple Coupons module with all available queries and sample data that you can both test via our demo endpoints and copy to run local tests in your Magento environment. More details about using public ...
      • Can guest users create wishlists?

        Starting with version 2.2.0 of the Multiple Wishlist module it is possible to to allow non-logged-in users to create wishlists. The feature is available with an active product or support subscription upon installation of the ...