Get invoice details
GET/invoices/:invoiceNumber
Returns the full record for a single invoice including the customer, dates, payment terms, all line items with SKU references and pricing, and financial totals (subtotal, discounts, tax, shipping, total).
Request
Response
- 200
- 401
- 404
Full invoice details
Unauthorized — missing or invalid API key
Resource not found
Response
{
"invoiceNumber": "INV-2025-0073",
"salesOrderNumber": "SO-2025-0189",
"customerName": "Sunrise Craft Beverages",
"status": "sent",
"invoiceDate": "2025-03-12",
"dueDate": "2025-04-11",
"paymentTerms": "Net 30",
"subtotal": 6250,
"discountAmount": 0,
"taxAmount": 500,
"shippingCharges": 275,
"totalAmount": 7025,
"paymentMethod": "bank_transfer",
"shipmentNumber": "SHP-2025-0042",
"notes": null,
"lineItems": [
{
"skuId": "1042",
"skuName": "Roasted Garlic Hummus",
"description": "Roasted Garlic Hummus - 16oz",
"quantity": 500,
"unit": "lbs",
"unitPrice": 12.5,
"amount": 6250
}
]
}