wordpress_wc_update_product
Update WooCommerce product details including pricing, inventory, descriptions, and attributes to maintain accurate online store information.
Instructions
Update WooCommerce product
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| productId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"productId": {
"type": "number"
},
"updates": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"productId",
"updates"
],
"type": "object"
}