woolworths_add_to_cart
Add products to your Woolworths shopping cart using product stockcodes. Specify quantity to manage your online grocery items for checkout.
Instructions
Add a product to the shopping cart/trolley
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stockcode | Yes | The product stockcode/ID to add | |
| quantity | No | Quantity to add (default: 1) |
Input Schema (JSON Schema)
{
"properties": {
"quantity": {
"default": 1,
"description": "Quantity to add (default: 1)",
"type": "number"
},
"stockcode": {
"description": "The product stockcode/ID to add",
"type": "number"
}
},
"required": [
"stockcode"
],
"type": "object"
}