Remove Item from user cart (13/01)

Fire this api to remove an item from cart.

This endpoint allows you to remove an item from cart

GET https://castleindia.in/emart/public /api/remove/cart/item /api/remove/cart/item

Headers

NameTypeDescription

Accept*

String

application/json

Authorization*

String

Bearer token {bearer token} goes here.

Request Body

NameTypeDescription

cartid*

String

cart id which you get in main cart api.

{
    "msg": "Item is removed from your cart !",
    "status": "success"
}

IF response fail

{
    "msg": "Cart id is required",
    "status": "fail"
}

Last updated