🔧 Configuration
❤️ Health Check
📊 Metrics
GET /api/orders - List Orders (Denormalized)
GET /api/orders/{orderNumberRef} - Get Specific Order
POST /api/orders/{orderNumberRef}/status - Update Order Status
GET /api/customers - List Customers
GET /api/customers/{customerNumber} - Get Specific Customer
POST /api/customers - Create or Update Customer (Upsert)
Upsert Functionality: This endpoint will create a new customer or update an existing one. Customers are matched by: CustAccntNumber + CustomerNumber + SiteUseCode + CustomerBillTo
Returns: 201 for new customers, 200 for updates.
GET /api/items - List Items
POST /api/items - Create or Update Item (Upsert)
Upsert Functionality: This endpoint will create a new item or update an existing one. Items are matched by: ITEMNUMBER (SKU) + ITEMUNIT2CODE (UOM)
Returns: 201 for new items, 200 for updates.