{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/wishlist-lab.zapifycommerce.com"
        }
    ],
    "info": {
        "name": "API Documentation - Zapify Wishlist Lab",
        "_postman_id": "5043e0d0-c6ac-481c-9c54-886f3ff949db",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Customer Wishlist",
            "description": "\nAPIs for managing customer wishlists",
            "item": [
                {
                    "name": "Retrieve List of wishlists",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/lists",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/lists",
                            "variable": [
                                {
                                    "id": "customer_id",
                                    "key": "customer_id",
                                    "value": "99999999",
                                    "description": "The Shopify customer id of the customer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"data\": {\n        \"wishlists\": [\n            {\n                \"id\": 1,\n                \"uuid\": \"6b7b2285-6631-4e36-aa4b-7fdbbe95b8cc\",\n                \"user_id\": 1,\n                \"customer_id\": 1,\n                \"customer\": 10000000000,\n                \"name\": \"Jon's wishlist\",\n                \"count\": 4,\n                \"is_default\": true,\n                \"is_public\": true,\n                \"created_at\": \"2024-12-31T21:59:19.000000Z\",\n                \"updated_at\": \"2025-01-06T20:01:02.000000Z\"\n            },\n            {\n                \"id\": 2,\n                \"uuid\": \"027b401c-f22d-4404-87f7-91a0d6b8268c\",\n                \"user_id\": 1,\n                \"customer_id\": 1,\n                \"customer\": 10000000000,\n                \"name\": \"Test List\",\n                \"count\": 3,\n                \"is_default\": false,\n                \"is_public\": true,\n                \"created_at\": \"2024-12-31T21:59:29.000000Z\",\n                \"updated_at\": \"2025-01-05T20:25:25.000000Z\"\n            }\n        ]\n    },\n    \"message\": \"Wishlist list fetched successfully.\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"customer_id\":99999999,\"list_name\":\"My Wishlist\",\"is_public\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n    \"status\": 201,\n    \"error\": false,\n    \"data\": {\n        \"id\": 1,\n        \"uuid\": \"6b7b2285-6631-4e36-aa4b-7fdbbe95b8cc\",\n        \"user_id\": 1,\n        \"customer_id\": 1,\n        \"customer\": 10000000000,\n        \"name\": \"Jon's wishlist\",\n        \"count\": 0,\n        \"is_default\": false,\n        \"is_public\": true,\n        \"created_at\": \"2024-12-31T21:59:19.000000Z\",\n        \"updated_at\": \"2025-01-06T20:01:02.000000Z\"\n    },\n    \"message\": \"Wishlist was created successfully!\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the existing wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/:id\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/:id\/update",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the wishlist."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"list_name\":\"My Wishlist\",\"is_public\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n    \"status\": 201,\n    \"error\": false,\n    \"data\": {\n        \"id\": 1,\n        \"uuid\": \"6b7b2285-6631-4e36-aa4b-7fdbbe95b8cc\",\n        \"user_id\": 1,\n        \"customer_id\": 1,\n        \"customer\": 10000000000,\n        \"name\": \"Jon's wishlist\",\n        \"count\": 0,\n        \"is_default\": false,\n        \"is_public\": true,\n        \"created_at\": \"2024-12-31T21:59:19.000000Z\",\n        \"updated_at\": \"2025-01-06T20:01:02.000000Z\"\n    },\n    \"message\": \"Wishlist was created successfully!\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete the existing wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/:id\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/:id\/delete",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "333",
                                    "description": "The ID of the wishlist."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"message\": \"Wishlist was deleted successfully!\"\n    \"data\": 333\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Customer Wishlist Items",
            "description": "\nAPIs for managing customer wishlist items",
            "item": [
                {
                    "name": "Retrieve List of wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/items\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/items\/status"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"products\":[{\"product_id\":8460971049249,\"variant_id\":46035853771041}],\"customer_id\":7195877802273,\"unique_device_id\":\"a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"error\": false,\n    \"status\": 201,\n    \"data\": [\n        {\n            \"_id\": 5757748,\n            \"product_id\": 8460971049249,\n            \"variant_id\": 46035853771041,\n            \"status\": true,\n            \"count\": 2\n        },\n        {\n            \"_id\": 76878677,\n            \"product_id\": 8460971049249,\n            \"variant_id\": 46035853771041,\n            \"status\": true,\n            \"count\": 2\n        }\n    ],\n    \"message\": \"Wishlist products fetch successfully!\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n    \"status\": 422,\n    \"error\": true,\n    \"message\": \"OOPS! items size exceeds limit, max items is 100 to per request\"\n    \"data\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add new item to customer wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/items\/add",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/items\/add"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"customer_id\":7195877802273,\"wishlist_id\":233,\"product_id\":8460971049249,\"variant_id\":46035853771041,\"unique_device_id\":\"a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd\"}"
                        },
                        "description": "Add a product to customer wishlist item resource"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"error\": false,\n    \"status\": 201,\n    \"data\": {\n        \"_id\": 5757748,\n        \"wishlist_id\": 233,\n        \"product_id\": 8460971049249,\n        \"variant_id\": 46035853771041,\n        \"status\": true,\n        \"count\": 2,\n        \"item\": {\n            \"product\": {\n                \"id\": 434343,\n                \"title\": \"The Art of Living\",\n                \"handle\": \"the-art-of-living\",\n                \"product_id\": 8460971049249\n            },\n            \"variant\": {\n                \"id\": 34333445,\n                \"variant_id\": 46035853771041,\n                \"title\": \"Small \/ White\",\n                \"sku\": \"SS-123\",\n                \"price\": \"10.00\",\n                \"inventory\": 10,\n                \"in_stock\": true\n            }\n        }\n    },\n    \"message\": \"Wishlist item was successfully created!\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n    \"status\": 403,\n    \"error\": true,\n    \"message\": \"Maximum wishlist item limit exceeded!\"\n    \"data\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Retrieve count customer wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/items\/count",
                            "query": [
                                {
                                    "key": "customer_id",
                                    "value": "7195877802273",
                                    "description": "The Shopify customer id of the customer.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/items\/count?customer_id=7195877802273"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"data\": {\n         \"count\": 1,\n    },\n    \"message\": \"Wishlist items total fetched successfully.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove item from customer wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/items\/:id\/remove",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/items\/:id\/remove",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "333",
                                    "description": "The ID of the wishlist item."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"data\": {\n         \"_id\":333,\n         \"count\": 4,\n    },\n    \"message\": \"Wishlist item deleted successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Dashboard Wishlist Items",
            "description": "\nAPIs for managing guest or customer wishlist items for user dashboard",
            "item": [
                {
                    "name": "Retrieve List of guest wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest\/wishlist\/items",
                            "query": [
                                {
                                    "key": "unique_device_id",
                                    "value": "a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd",
                                    "description": "The unique identifier, max length is 50 characters. This one will be as a device identifier, you have to generate it for a users first time visit to your app and have to store it for permanently use case.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "The number of items per page, default is 10.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/guest\/wishlist\/items?unique_device_id=a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"message\": \"Wishlist Items retrieved successfully.\",\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": 13,\n                \"product_id\": 7,\n                \"variant_id\": 9,\n                \"product\": {\n                    \"id\": 7,\n                    \"shopify_product_id\": 8460971376929,\n                    \"title\": \"Abito Adele\",\n                    \"handle\": \"abito-adele-2\",\n                    \"vendor\": \"Mia Rebel Moda\",\n                    \"image\": \"https:\/\/cdn.shopify.com\/s\/files\/1\/0800\/0589\/0337\/products\/d78acba9b161.jpg?v=1691051895\",\n                    \"count\": 1\n                },\n                \"variant\": {\n                    \"id\": 9,\n                    \"product_id\": 7,\n                    \"shopify_variant_id\": 46035854098721,\n                    \"title\": \"Verde acqua \/ Cotone elastico \/ S\",\n                    \"price\": \"19.99\",\n                    \"sku\": \"0090\",\n                    \"inventory\": 10,\n                    \"in_stock\": true\n                }\n            },\n            {\n                \"id\": 14,\n                \"product_id\": 8,\n                \"variant_id\": 13,\n                \"product\": {\n                    \"id\": 8,\n                    \"shopify_product_id\": 8460970852641,\n                    \"title\": \"Abito Barbara\",\n                    \"handle\": \"abito-barbara\",\n                    \"vendor\": \"Mia Rebel Moda\",\n                    \"image\": \"https:\/\/cdn.shopify.com\/s\/files\/1\/0800\/0589\/0337\/products\/795326.jpg?v=1691051874\",\n                    \"count\": 2\n                },\n                \"variant\": {\n                    \"id\": 13,\n                    \"product_id\": 8,\n                    \"shopify_variant_id\": 46035853541665,\n                    \"title\": \"Lilla \/ S\",\n                    \"price\": \"12.99\",\n                    \"sku\": \"0124\",\n                    \"inventory\": 1,\n                    \"in_stock\": true\n                }\n            }\n        ],\n        \"meta\": {\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"total_items\": 2,\n            \"per_page\": 2\n        }\n    }\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Retrieve List of customer wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/wishlist\/:id\/items",
                            "query": [
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "The number of items per page, default is 10.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/wishlist\/:id\/items?per_page=10",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "333",
                                    "description": "The ID of the wishlist."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"message\": \"Wishlist Items retrieved successfully.\",\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": 13,\n                \"product_id\": 7,\n                \"variant_id\": 9,\n                \"product\": {\n                    \"id\": 7,\n                    \"shopify_product_id\": 8460971376929,\n                    \"title\": \"Abito Adele\",\n                    \"handle\": \"abito-adele-2\",\n                    \"vendor\": \"Mia Rebel Moda\",\n                    \"image\": \"https:\/\/cdn.shopify.com\/s\/files\/1\/0800\/0589\/0337\/products\/d78acba9b161.jpg?v=1691051895\",\n                    \"count\": 1\n                },\n                \"variant\": {\n                    \"id\": 9,\n                    \"product_id\": 7,\n                    \"shopify_variant_id\": 46035854098721,\n                    \"title\": \"Verde acqua \/ Cotone elastico \/ S\",\n                    \"price\": \"19.99\",\n                    \"sku\": \"0090\",\n                    \"inventory\": 10,\n                    \"in_stock\": true\n                }\n            },\n            {\n                \"id\": 14,\n                \"product_id\": 8,\n                \"variant_id\": 13,\n                \"product\": {\n                    \"id\": 8,\n                    \"shopify_product_id\": 8460970852641,\n                    \"title\": \"Abito Barbara\",\n                    \"handle\": \"abito-barbara\",\n                    \"vendor\": \"Mia Rebel Moda\",\n                    \"image\": \"https:\/\/cdn.shopify.com\/s\/files\/1\/0800\/0589\/0337\/products\/795326.jpg?v=1691051874\",\n                    \"count\": 2\n                },\n                \"variant\": {\n                    \"id\": 13,\n                    \"product_id\": 8,\n                    \"shopify_variant_id\": 46035853541665,\n                    \"title\": \"Lilla \/ S\",\n                    \"price\": \"12.99\",\n                    \"sku\": \"0124\",\n                    \"inventory\": 1,\n                    \"in_stock\": true\n                }\n            }\n        ],\n        \"meta\": {\n            \"current_page\": 1,\n            \"total_pages\": 1,\n            \"total_items\": 2,\n            \"per_page\": 2\n        }\n    }\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Guest Wishlist Items",
            "description": "\nAPIs for managing guest wishlist items",
            "item": [
                {
                    "name": "Retrieve List of wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest\/wishlist\/items\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest\/wishlist\/items\/status"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"products\":[{\"product_id\":8460971049249,\"variant_id\":46035853771041}],\"unique_device_id\":\"a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"error\": false,\n    \"status\": 201,\n    \"data\": [\n        {\n            \"_id\": 5757748,\n            \"product_id\": 8460971049249,\n            \"variant_id\": 46035853771041,\n            \"status\": true,\n            \"count\": 2\n        },\n        {\n            \"_id\": 76878677,\n            \"product_id\": 8460971049249,\n            \"variant_id\": 46035853771041,\n            \"status\": true,\n            \"count\": 2\n        }\n    ],\n    \"message\": \"Wishlist products fetch successfully!\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n    \"status\": 422,\n    \"error\": true,\n    \"message\": \"OOPS! items size exceeds limit, max items is 100 to per request\"\n    \"data\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add new item to guest wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest\/wishlist\/items\/add",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest\/wishlist\/items\/add"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":8460971049249,\"variant_id\":46035853771041,\"unique_device_id\":\"a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd\"}"
                        },
                        "description": "Add a product to guest wishlist item resource"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n    \"error\": false,\n    \"status\": 201,\n    \"data\": {\n        \"_id\": 5757748,\n        \"wishlist_id\": null,\n        \"product_id\": 8460971049249,\n        \"variant_id\": 46035853771041,\n        \"status\": true,\n        \"count\": 2,\n        \"item\": {\n            \"product\": {\n                \"id\": 434343,\n                \"title\": \"The Art of Living\",\n                \"handle\": \"the-art-of-living\",\n                \"product_id\": 8460971049249\n            },\n            \"variant\": {\n                \"id\": 34333445,\n                \"variant_id\": 46035853771041,\n                \"title\": \"Small \/ White\",\n                \"sku\": \"SS-123\",\n                \"price\": \"10.00\",\n                \"inventory\": 10,\n                \"in_stock\": true\n            }\n        }\n    },\n    \"message\": \"Wishlist item was successfully created!\"\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n    \"status\": 403,\n    \"error\": true,\n    \"message\": \"Maximum wishlist item limit exceeded!\"\n    \"data\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Retrieve count guest wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest\/wishlist\/items\/count",
                            "query": [
                                {
                                    "key": "unique_device_id",
                                    "value": "a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd",
                                    "description": "The unique identifier, max length is 50 characters. This one will be as a device identifier, you have to generate it for a users first time visit to your app and have to store it for permanently use case.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/guest\/wishlist\/items\/count?unique_device_id=a464eced-0ece-4e6f-a10b-95d8de4fd299-193ff5ac9bd"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"data\": {\n         \"count\": 1,\n    },\n    \"message\": \"Wishlist items total fetched successfully.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove item from guest wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest\/wishlist\/items\/:id\/remove",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest\/wishlist\/items\/:id\/remove",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "333",
                                    "description": "The ID of the wishlist item."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"data\": {\n         \"_id\":333,\n         \"count\": 4,\n    },\n    \"message\": \"Wishlist item deleted successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Settings",
            "description": "\nAPIs for managing app settings for store",
            "item": [
                {
                    "name": "Retrieve Store Settings and Widgets",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/shop\/settings",
                            "query": [
                                {
                                    "key": "locale",
                                    "value": "%60en%60",
                                    "description": "Language code, defaults to `en`.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/shop\/settings?locale=%60en%60"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": 200,\n    \"error\": false,\n    \"message\": \"App settings and widgets retrieved successfully\",\n    \"data\": {\n        \"settings\": {\n            \"app_enable\": true,\n            \"count_enable\": true,\n            \"guest_enable\": true,\n            \"multiple_enable\": true,\n            \"cart_move_enable\": true,\n            \"share_enable\": true,\n            \"subscribe_enable\": true,\n            \"analysis_enable\": true\n        },\n        \"widgets\": {\n            \"custom-analytics\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"facebook_pixel_code\": \"453534534534\",\n                    \"google_analytics_code\": \"G-H3X2856BN5\"\n                },\n                \"content\": null\n            },\n            \"custom-css\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"code\": \"body {\\n  margin: 0;\\n  padding: 0;\\n  color: #000;\\n  background: #fff;\\n}\"\n                },\n                \"content\": null\n            },\n            \"collection_page\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"type\": \"icon-solid\",\n                    \"bg_color\": \"#222222\",\n                    \"text_color\": \"#fff\",\n                    \"is_absolute\": true\n                },\n                \"content\": {\n                    \"after_text\": \"Added to Wishlist\",\n                    \"before_text\": \"Add to Wishlist\"\n                }\n            },\n            \"header_menu\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"button_type\": \"regular\",\n                    \"primary_color\": \"#222222\",\n                    \"secondary_color\": \"#fff\"\n                },\n                \"content\": null\n            },\n            \"product_page\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"type\": \"icon-solid\",\n                    \"bg_color\": \"#222222\",\n                    \"is_block\": true,\n                    \"text_color\": \"#fff\"\n                },\n                \"content\": {\n                    \"after_text\": \"Added to Wishlist\",\n                    \"before_text\": \"Add to Wishlist\"\n                }\n            },\n            \"cart_page\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"type\": \"icon-solid\",\n                    \"bg_color\": \"#222222\",\n                    \"is_simple\": false,\n                    \"text_color\": \"#fff\"\n                },\n                \"content\": {\n                    \"after_text\": \"Saved For Later\",\n                    \"before_text\": \"Save For Later\"\n                }\n            },\n            \"wishlist_page\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"theme\": {\n                        \"primary\": \"#222222\",\n                        \"secondary\": \"#fff\",\n                        \"primary_text\": \"#343a40\",\n                        \"secondary_text\": \"#253d4e\"\n                    }\n                },\n                \"content\": {\n                    \"empty\": {\n                        \"title\": \"Your wishlist is empty!\",\n                        \"btn_url\": \"\/shop\",\n                        \"btn_text\": \"Go Shopping\",\n                        \"description\": \"OOPS, There are no products in wishlist, go find the products you like!\"\n                    },\n                    \"login\": {\n                        \"title\": \"Login is required to see your wishlist!\",\n                        \"btn_text\": \"Login\"\n                    },\n                    \"popup\": {\n                        \"confirm\": {\n                            \"title\": \"Are you sure you want to delete this element?\",\n                            \"no_btn_text\": \"No\",\n                            \"yes_btn_text\": \"Yes\",\n                            \"close_btn_text\": \"Close\"\n                        },\n                        \"add_edit\": {\n                            \"add\": {\n                                \"title\": \"Create a new list\",\n                                \"btn_text\": \"Create New List\"\n                            },\n                            \"edit\": {\n                                \"title\": \"Edit List\",\n                                \"btn_text\": \"Update List\"\n                            },\n                            \"error\": \"Please enter list name\",\n                            \"placeholder\": \"Enter list name\",\n                            \"radio_public\": \"<b class=\\\"ws--strong\\\">Public<\/b> - Only people with a link to this list can see it\",\n                            \"radio_private\": \"<b class=\\\"ws--strong\\\">Private<\/b> - Only you can see this list, you can't share it\",\n                            \"close_btn_text\": \"Close\"\n                        },\n                        \"move_share\": {\n                            \"move\": {\n                                \"title\": \"Move to another list\",\n                                \"btn_text\": \"Move to List\",\n                                \"no_option_message\": \"OOPS, There are no lists to move.\"\n                            },\n                            \"share\": {\n                                \"title\": \"Share your wishlist\",\n                                \"btn_text\": \"Copy\"\n                            },\n                            \"close_btn_text\": \"Close\"\n                        }\n                    },\n                    \"header\": {\n                        \"title\": \"My Wishlist\",\n                        \"description\": \"To save your wishlist please <a href=\\\"\/account\/login\\\">login<\/a> Or <a href=\\\"\/account\/register\\\">sign up<\/a>.\",\n                        \"search_placeholder\": \"Search\"\n                    },\n                    \"content\": {\n                        \"layout\": \"grid\",\n                        \"added_on\": \"Added on\",\n                        \"stock_in\": \"In Stock\",\n                        \"stock_out\": \"Stock Out\",\n                        \"cart_btn_text\": \"Move to Cart\",\n                        \"move_btn_text\": \"Move to another list\"\n                    },\n                    \"sidebar\": {\n                        \"default_text\": \"Default\",\n                        \"edit_btn_text\": \"Edit\",\n                        \"share_btn_text\": \"Share\",\n                        \"create_btn_text\": \"Create new list\",\n                        \"delete_btn_text\": \"Delete\"\n                    },\n                    \"notification\": {\n                        \"error\": \"OOPS, There was an error. Please try again!\",\n                        \"copy_link\": \"Copied the link to clipboard!\",\n                        \"list_create\": \"Wishlist was created successfully!\",\n                        \"list_delete\": \"Wishlist was deleted successfully!\",\n                        \"list_update\": \"Wishlist was updated successfully!\",\n                        \"product_move\": \"Product was moved successfully!\"\n                    }\n                }\n            },\n            \"wishlist_popup\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"theme\": {\n                        \"primary\": \"#222222\",\n                        \"secondary\": \"#3e4146\"\n                    },\n                    \"button\": {\n                        \"bg_color\": \"#222222\",\n                        \"text_color\": \"#fff\"\n                    }\n                },\n                \"content\": {\n                    \"radio\": {\n                        \"public\": \"<b class=\\\"ws--strong\\\">Public<\/b> - Only people with a link to this list can see it\",\n                        \"private\": \"<b class=\\\"ws--strong\\\">Private<\/b> - Only you can see this list, you can't share it\"\n                    },\n                    \"button\": {\n                        \"list_btn_text\": \"Create New List\",\n                        \"close_btn_text\": \"Close\",\n                        \"wishlist_btn_text\": \"Add to Wishlist\"\n                    },\n                    \"heading\": {\n                        \"list_text\": \"Create a new list\",\n                        \"wishlist_text\": \"Choose a wishlist\",\n                        \"separator_text\": \"or\"\n                    },\n                    \"message\": {\n                        \"no_option_text\": \"OOPS! No option to show.\",\n                        \"list_input_empty_text\": \"Wishlist name is required!\",\n                        \"list_input_placeholder\": \"Enter wishlist name...\"\n                    }\n                }\n            },\n            \"subscriber_popup\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"theme\": {\n                        \"accent\": \"#3e4146\",\n                        \"primary\": \"#222222\",\n                        \"secondary\": \"#fff\"\n                    }\n                },\n                \"content\": {\n                    \"form\": {\n                        \"email\": {\n                            \"label\": \"Email Address\",\n                            \"errors\": {\n                                \"email\": \"Email address is invalid\",\n                                \"required\": \"Email address is required\"\n                            },\n                            \"placeholder\": \"Enter your email\"\n                        },\n                        \"last_name\": {\n                            \"label\": \"Last Name\",\n                            \"placeholder\": \"Enter your last name\"\n                        },\n                        \"first_name\": {\n                            \"label\": \"First Name\",\n                            \"placeholder\": \"Enter your first name\"\n                        }\n                    },\n                    \"button\": {\n                        \"cancel_btn_text\": \"Cancel\",\n                        \"subscribe_btn_text\": \"Subscribe\"\n                    },\n                    \"footer\": {\n                        \"text\": \"We will send you an email when your wishlist products have interesting update to help save your time and money. We will never share your email address with anyone else.\"\n                    },\n                    \"header\": {\n                        \"title\": \"Remind Me About My Wishlist\",\n                        \"sub_title\": \"Receive updates about your wishlist content via email\",\n                        \"close_btn_text\": \"Close\"\n                    },\n                    \"messages\": {\n                        \"error\": \"OOPS! There was an error, please try again.\",\n                        \"unique\": \"OOPS! Email is already subscribed, please use another valid email.\",\n                        \"success\": \"Subscribed successfully! Please confirm your email for activated\",\n                        \"subscriber\": \"OOPS! Already subscribed, you are not able to subscribe again.\"\n                    }\n                }\n            },\n            \"notification\": {\n                \"locale\": \"en\",\n                \"style\": {\n                    \"theme\": {\n                        \"primary\": \"#222222\",\n                        \"secondary\": \"#3e4146\"\n                    },\n                    \"timeout\": \"3500\"\n                },\n                \"content\": {\n                    \"button\": {\n                        \"view_btn_text\": \"View\",\n                        \"close_btn_text\": \"Close\",\n                        \"btn_separator_text\": \"or\"\n                    },\n                    \"message\": {\n                        \"added_text\": \"Product added in wishlist\",\n                        \"removed_text\": \"Product removed to wishlist\"\n                    }\n                }\n            },\n            \"toast_notification\": {\n                \"locale\": \"en\",\n                \"style\": null,\n                \"content\": {\n                    \"common_error_text\": \"OOPS! Something went wrong, please try again later!\",\n                    \"guest_disable_text\": \"Please login to add this item to your Wishlist!\",\n                    \"wishlist_limit_text\": \"Maximum wishlist item limit exceeded!\"\n                }\n            }\n        }\n    }\n}\n",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "key",
                "type": "string"
            }
        ]
    }
}