create_fulfillment_order
Generate and send fulfillment order data to ShipStation API for processing and order management, streamlining e-commerce operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderData | Yes | JSON string containing the fulfillment order data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderData": {
"description": "JSON string containing the fulfillment order data",
"type": "string"
}
},
"required": [
"orderData"
],
"type": "object"
}