Sign in

Create order

documented

Create a new order.

POST /orders/createorderOrders (Companion)no implementation yet0 runs
No 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 "Host: ssapi.shipstation.com" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"orderNumber": "{{$orderNumber}}", "orderDate": "{{$orderDate}}", "orderStatus": "{{$orderStatus}}", "billTo": {"name": "{{$billName}}", "street1": "{{$billStreet1}}", "city": "{{$billCity}}", "state": "{{$billState}}", "postalCode": "{{$billPostalCode}}", "country": "{{$billCountry}}"}, "shipTo": {"name": "{{$shipName}}", "street1": "{{$shipStreet1}}", "city": "{{$shipCity}}", "state": "{{$shipState}}", "postalCode": "{{$shipPostalCode}}", "country": "{{$shipCountry}}", "residential": {{$shipResidential}}}, "items": [{"sku": "{{$sku}}", "name": "{{$itemName}}", "quantity": {{$quantity}}, "unitPrice": {{$unitPrice}} }], "amountPaid": {{$amountPaid}}, "taxAmount": {{$taxAmount}}, "shippingAmount": {{$shippingAmount}}, "customerNotes": "{{$customerNotes}}", "internalNotes": "{{$internalNotes}}", "gift": {{$gift}}, "giftMessage": "{{$giftMessage}}", "paymentMethod": "{{$paymentMethod}}", "carrierCode": "{{$carrierCode}}", "serviceCode": "{{$serviceCode}}", "packageCode": "{{$packageCode}}", "confirmation": "{{$confirmation}}", "shipDate": "{{$shipDate}}", "weight": {"value": {{$weightValue}}, "units": "{{$weightUnits}}"}, "dimensions": {"length": {{$dimLength}}, "width": {{$dimWidth}}, "height": {{$dimHeight}}, "units": "{{$dimUnits}}"}, "tagIds": [{{$tagIds}}]}'"
Create order · ShipStation · OpenIntegrations