Public
Documentation Settings

Better Wishlist

GETGet Configs

{{magento_base_url}}/rest/V1/MpWishList/configs
HEADERS
Content-Type

application/json

Authorization

Bearer {{admin_token}}

Example Request
curl
curl --location -g '{{magento_base_url}}/rest/V1/MpWishList/configs' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{admin_token}}'
200 OK
Example Response
json
{
  "general": {
    "enabled": true,
    "remove_after_add_to_cart": true,
    "enabled_multi_wishlist": true,
    "show_all_item": true,
    "allow_customer_create_wishlist": true,
    "limit_number_of_wishlist": 5,
    "font_awesome": true
  }
}
Date

Mon, 28 Dec 2020 02:53:17 GMT

Server

Apache/2.4.18 (Ubuntu)

Expires

Thu, 19 Nov 1981 08:52:00 GMT

Cache-Control

no-store, no-cache, must-revalidate

Pragma

no-cache

Set-Cookie

PHPSESSID=cmpe4ode640k854r1t44u2ippt; expires=Mon, 28-Dec-2020 03:53:17 GMT; Max-Age=3600; path=/thu/ce236a; domain=192.168.1.100; HttpOnly

X-Frame-Options

SAMEORIGIN

Content-Length

198

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json; charset=utf-8

GETGet All Categories

{{magento_base_url}}/rest/V1/MpWishList/mine/categories/showItem/:isItems
HEADERS
Content-Type

application/json

Authorization

Bearer {{customer_token}}

PATH VARIABLES
isItems

1

Example Request
curl
curl --location -g '{{magento_base_url}}/rest/V1/MpWishList/mine/categories/showItem/1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{customer_token}}'
200 OK
Example Response
json
[
  {
    "category_id": "1606097558947_947",
    "category_name": "Wishlist 1",
    "is_default": false,
    "items": []
  },
  {
    "category_id": "1609140724_338",
    "category_name": "Mageplaza",
    "is_default": false,
    "items": []
  },
  {
    "category_id": "1609142786_569",
    "category_name": "Mageplaza 1",
    "is_default": false,
    "items": []
  },
  {
    "category_id": "1609225255_369",
    "category_name": "Test2",
    "is_default": false,
    "items": []
  },
  {
    "category_id": "1549942665116_116",
    "category_name": "Default Category",
    "is_default": true,
    "items": [
      {
        "wishlist_item_id": 1,
        "product_id": 1562,
        "store_id": 1,
        "added_at": "2020-11-16 07:33:50",
        "description": "",
        "qty": 16
      },
      {
        "wishlist_item_id": 6,
        "product_id": 6,
        "store_id": 1,
        "added_at": "2020-11-20 09:56:00",
        "description": "",
        "qty": 5
      },
      {
        "wishlist_item_id": 7,
        "product_id": 1818,
        "store_id": 1,
        "added_at": "2020-11-23 02:12:55",
        "description": "",
        "qty": 1
      }
    ]
  },
  {
    "category_id": "1609124763905_905",
    "category_name": "1",
    "is_default": true,
    "items": [
      {
        "wishlist_item_id": 8,
        "product_id": 1402,
        "store_id": 2,
        "added_at": "2020-12-28 03:23:16",
        "description": "",
        "qty": 1
      }
    ]
  }
]
Date

Wed, 30 Dec 2020 02:46:52 GMT

Server

Apache/2.4.18 (Ubuntu)

Expires

Thu, 19 Nov 1981 08:52:00 GMT

Cache-Control

no-store, no-cache, must-revalidate

Pragma

no-cache

Set-Cookie

PHPSESSID=mas45rgr7l1ausp9c8do8efls6; expires=Wed, 30-Dec-2020 03:46:58 GMT; Max-Age=3600; path=/thu/ce236a; domain=192.168.1.100; HttpOnly

X-Frame-Options

SAMEORIGIN

Content-Length

996

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json; charset=utf-8

GETGet Category By ID

{{magento_base_url}}/rest/V1/MpWishList/mine/categories/:categoryId/showItem/:isItems
HEADERS
Content-Type

application/json

Authorization

Bearer {{customer_token}}

PATH VARIABLES
categoryId

1609124763905_905

isItems

1

Example Request
curl
curl --location -g '{{magento_base_url}}/rest/V1/MpWishList/mine/categories/1609124763905_905/showItem/1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{customer_token}}'
200 OK
Example Response
json
[
  {
    "category_id": "1609124763905_905",
    "category_name": "1",
    "is_default": true,
    "items": [
      {
        "wishlist_item_id": 8,
        "product_id": 1402,
        "store_id": 2,
        "added_at": "2020-12-28 03:23:16",
        "description": "",
        "qty": 1
      }
    ]
  }
]
Date

Wed, 30 Dec 2020 02:47:13 GMT

Server

Apache/2.4.18 (Ubuntu)

Expires

Thu, 19 Nov 1981 08:52:00 GMT

Cache-Control

no-store, no-cache, must-revalidate

Pragma

no-cache

Set-Cookie

PHPSESSID=mas45rgr7l1ausp9c8do8efls6; expires=Wed, 30-Dec-2020 03:47:13 GMT; Max-Age=3600; path=/thu/ce236a; domain=192.168.1.100; HttpOnly

X-Frame-Options

SAMEORIGIN

Content-Length

197

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json; charset=utf-8

POSTAdd Item To Category

{{magento_base_url}}/rest/V1/MpWishList/mine/add/:productId/category/:categoryId
HEADERS
Content-Type

application/json

Authorization

Bearer {{customer_token}}

PATH VARIABLES
productId

1402

categoryId

1609225255_369

Example Request
curl
curl --location -g --request POST '{{magento_base_url}}/rest/V1/MpWishList/mine/add/1402/category/1609225255_369' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{customer_token}}'
200 OK
Example Response
json
true
Date

Tue, 29 Dec 2020 07:45:24 GMT

Server

Apache/2.4.18 (Ubuntu)

Expires

Thu, 19 Nov 1981 08:52:00 GMT

Cache-Control

no-store, no-cache, must-revalidate

Pragma

no-cache

Set-Cookie

PHPSESSID=rsghveml2qu81p657hi2g04h8p; expires=Tue, 29-Dec-2020 08:45:24 GMT; Max-Age=3600; path=/thu/ce236a; domain=192.168.1.100; HttpOnly

X-Frame-Options

SAMEORIGIN

Content-Length

4

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json; charset=utf-8