Skip to main content
POST
/
v1
/
actions
/
remove-tote-from-cart
Remove tote from cart
curl --request POST \
  --url http://localhost:3000/v1/actions/remove-tote-from-cart \
  --header 'Content-Type: application/json' \
  --data '
{
  "tote_id": "001000000000000001",
  "cart_id": "002000000000000001"
}
'
{
  "success": true,
  "message": "<string>",
  "affectedEntity": {
    "type": "<string>",
    "id": "<string>"
  }
}

Body

application/json

Remove tote from cart body

tote_id
string
required

Tote ID

Example:

"001000000000000001"

cart_id
string
required

Cart ID

Example:

"002000000000000001"

Response

Tote removed successfully

Scanner success response

success
boolean
required
message
string
required
affectedEntity
object