update_order_status
Modify the status of an order in CS-Cart MCP Server by specifying the order ID, new status, and optional user notification for tracking and managing e-commerce transactions efficiently.
Instructions
Update order status
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| notify_user | No | Whether to notify the user about status change | |
| order_id | Yes | Order ID | |
| status | Yes | New order status (O=Open, P=Processed, C=Complete, F=Failed, D=Declined, B=Backordered, I=Incomplete) | 
Input Schema (JSON Schema)
{
  "properties": {
    "notify_user": {
      "default": true,
      "description": "Whether to notify the user about status change",
      "type": "boolean"
    },
    "order_id": {
      "description": "Order ID",
      "type": "number"
    },
    "status": {
      "description": "New order status (O=Open, P=Processed, C=Complete, F=Failed, D=Declined, B=Backordered, I=Incomplete)",
      "enum": [
        "O",
        "P",
        "C",
        "F",
        "D",
        "B",
        "I"
      ],
      "type": "string"
    }
  },
  "required": [
    "order_id",
    "status"
  ],
  "type": "object"
}