create_order
Submit order data to the ShipStation API via a structured JSON input to create and manage orders efficiently within the ShipStation system.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderData | Yes | JSON string containing the order data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderData": {
"description": "JSON string containing the order data",
"type": "string"
}
},
"required": [
"orderData"
],
"type": "object"
}