woolworths_update_cart_quantity
Change product quantities in your Woolworths shopping cart by specifying the stockcode and desired amount to update your order.
Instructions
Update the quantity of a product in the shopping cart/trolley
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stockcode | Yes | The product stockcode/ID | |
| quantity | Yes | New quantity |
Input Schema (JSON Schema)
{
"properties": {
"quantity": {
"description": "New quantity",
"type": "number"
},
"stockcode": {
"description": "The product stockcode/ID",
"type": "number"
}
},
"required": [
"stockcode",
"quantity"
],
"type": "object"
}