mark_order_as_shipped
Update order status to shipped by providing order ID, carrier code, ship date, and tracking number via the ShipStation API MCP Server.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| carrierCode | Yes | Carrier code | |
| orderId | Yes | Order ID to mark as shipped | |
| shipDate | Yes | Ship date (YYYY-MM-DD) | |
| trackingNumber | Yes | Tracking number | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "carrierCode": {
      "description": "Carrier code",
      "type": "string"
    },
    "orderId": {
      "description": "Order ID to mark as shipped",
      "type": "number"
    },
    "shipDate": {
      "description": "Ship date (YYYY-MM-DD)",
      "type": "string"
    },
    "trackingNumber": {
      "description": "Tracking number",
      "type": "string"
    }
  },
  "required": [
    "orderId",
    "carrierCode",
    "shipDate",
    "trackingNumber"
  ],
  "type": "object"
}