Get sales order details
GET/sales-orders/:salesOrderNumber
Returns the full record for a single sales order, including the customer, order and expected delivery dates, current status, all line items with SKU references and pricing, payment terms, and financial totals (subtotal, discounts, tax, shipping, total). Use this to reconcile order details or feed fulfillment data into an external system.
Request
Response
- 200
- 401
- 404
Full sales order details
Unauthorized — missing or invalid API key
Resource not found
Response
{
"orderNumber": "SO-2025-0189",
"customerId": null,
"customerName": "Sunrise Craft Beverages",
"orderDate": "2025-02-18",
"expectedDeliveryDate": "2025-03-15",
"status": "confirmed",
"subtotal": 6250,
"discountAmount": 0,
"taxAmount": 500,
"shippingCharges": 275,
"totalAmount": 7025,
"paymentTerms": "Net 30",
"referenceNumber": null,
"notes": null,
"lineItems": [
{
"skuId": "1042",
"skuName": "Roasted Garlic Hummus",
"quantity": 500,
"unit": "lbs",
"unitPrice": 12.5,
"subtotal": 6250
}
]
}