Get Guest User Cart (15/01)

Fire this api to get guest user cart

You need to send json array of items in following format :

{
    "cart": [
        {
            "variantid": "108", //If variant product also in cart
            "quantity": "1"
        },
        {
            "simple_pro_id" : 1, //If simple product also in cart
            "quantity"      : 1
        }
    ]
}

IF response fail

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

Last updated