woolworths_remove_from_cart
Remove unwanted products from your Woolworths shopping cart by providing the product stockcode/ID to keep your cart organized with only the items you want.
Instructions
Remove a product from the shopping cart/trolley
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stockcode | Yes | The product stockcode/ID to remove |
Input Schema (JSON Schema)
{
"properties": {
"stockcode": {
"description": "The product stockcode/ID to remove",
"type": "number"
}
},
"required": [
"stockcode"
],
"type": "object"
}