Create order
documentedCreate a new order.
POST /orders/createorderOrdersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://ssapi.shipstation.com/orders/createorder" \
-X POST \
-u "{{SHIPSTATION_API_KEY}}:{{SHIPSTATION_SECRET}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"orderNumber": "{{$orderNumber}}", "orderDate": "{{$orderDate}}", "orderStatus": "{{$orderStatus}}", "billTo": {"name": "{{$bill_name}}", "street1": "{{$bill_street1}}", "city": "{{$bill_city}}", "state": "{{$bill_state}}", "postalCode": "{{$bill_postalCode}}", "countryCode": "US" }, "shipTo": {"name": "{{$ship_name}}", "street1": "{{$ship_street1}}", "city": "{{$ship_city}}", "state": "{{$ship_state}}", "postalCode": "{{$ship_postalCode}}", "countryCode": "US" }, "customerEmail": "{{$customerEmail}}", "items": [ { "sku": "{{$sku}}", "name": "{{$name}}", "quantity": {{$quantity}}, "unitPrice": {{$unitPrice}} } ] }}'