woolworths_get_product_details
Retrieve detailed product information from Woolworths Australia using the product stockcode to access pricing, specifications, and availability data.
Instructions
Get detailed information about a specific product by its stockcode
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stockcode | Yes | The product stockcode/ID |
Input Schema (JSON Schema)
{
"properties": {
"stockcode": {
"description": "The product stockcode/ID",
"type": "string"
}
},
"required": [
"stockcode"
],
"type": "object"
}