wordpress_wc_update_order_status
Update WooCommerce order status by providing order ID and new status value to manage order workflow and fulfillment processes.
Instructions
Update WooCommerce order status
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderId | Yes | ||
| status | Yes |
Input Schema (JSON Schema)
{
"properties": {
"orderId": {
"type": "number"
},
"status": {
"type": "string"
}
},
"required": [
"orderId",
"status"
],
"type": "object"
}