View Particular Wishlist collection (09/02)

Fire this api to view particular wishlist collection.

GET https://castleindia.in/emart/public/api /wishlist/collection/{id}?currency=XXX /api/wishlist/collection/{id}

Path Parameters

NameTypeDescription

id

String

ID of the collection.

Query Parameters

NameTypeDescription

currency

String

Currency ISO code 3.

Headers

NameTypeDescription

Accept

String

application/json

Authentication

String

Authentication token to track down who is emptying our stocks.

{
    "data": {
        "id": 1,
        "name": "My Collection",
        "items": [
            {
                "wishlistid": 7,
                "productid": 9,
                "variantid": 18,
                "productname": "Lenovo Legion",
                "variant": [
                    {
                        "var_name": "16GB",
                        "attr_name": "RAM",
                        "type": "s"
                    },
                    {
                        "var_name": "1TB",
                        "attr_name": "Storage",
                        "type": "s"
                    }
                ],
                "thumpath": "https://emartv8.test/variantimages/thumbnails",
                "thumbnail": "variant_1579175514k9Ow7if2E0.png",
                "price": 12444.79,
                "offerprice": 8655154.2,
                "stock": "In Stock",
                "rating": 0,
                "symbol": "โ‚น"
            },
            {
                "wishlistid": 3,
                "productid": 2,
                "variantid": 3,
                "productname": "Mini Instant Camera",
                "variant": [
                    {
                        "var_name": "100Pixels",
                        "attr_name": "Resolution",
                        "type": "s"
                    }
                ],
                "thumpath": "https://emartv8.test/variantimages/thumbnails",
                "thumbnail": "variant_1596517319wOnLDJ8T82.jpg",
                "price": 31232.42,
                "offerprice": 0,
                "stock": "In Stock",
                "rating": 5,
                "symbol": "โ‚น"
            },
            {
                "wishlistid": 1,
                "productid": 1,
                "variantid": 1,
                "productname": "Canon EOS185",
                "variant": [
                    {
                        "var_name": "24MP",
                        "attr_name": "Resolution",
                        "type": "s"
                    }
                ],
                "thumpath": "https://emartv8.test/variantimages/thumbnails",
                "thumbnail": "variant_1596517251tehUwZNT9c.jpg",
                "price": 25531.9,
                "offerprice": 0,
                "stock": "In Stock",
                "rating": 4,
                "symbol": "โ‚น"
            }
        ]
    },
    "status": "success"
}

IF response fail

{
    "msg": "The currency field is required.",
    "status": "fail"
}

Last updated