{
"id": "order_123456",
"number": "MNKY-1001",
"status": "completed",
"createdAt": "2023-03-15T14:30:00Z",
"updatedAt": "2023-03-16T10:45:00Z",
"completedAt": "2023-03-16T10:45:00Z",
"totalAmount": 84.97,
"currency": "USD",
"customer": {
"id": "user_123456",
"email": "[email protected]",
"name": "Jane Smith"
},
"items": [
{
"id": "item_123456",
"productId": "prod_123456",
"name": "Serenity Candle",
"variantName": "Large",
"sku": "SER-CAN-L",
"price": 34.99,
"quantity": 2,
"subtotal": 69.98,
"image": "https://example.com/images/candle1.jpg"
},
{
"id": "item_123457",
"productId": "prod_234567",
"name": "Lavender Bath Bombs",
"variantName": "Single",
"sku": "LAV-BB-S",
"price": 14.99,
"quantity": 1,
"subtotal": 14.99,
"image": "https://example.com/images/bath-bomb1.jpg"
}
],
"shippingAddress": {
"name": "Jane Smith",
"line1": "123 Main St",
"line2": "Apt 4B",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US",
"phone": "+1 (555) 555-1234"
},
"billingAddress": {
"name": "Jane Smith",
"line1": "123 Main St",
"line2": "Apt 4B",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US",
"phone": "+1 (555) 555-1234"
},
"shippingDetails": {
"method": "standard",
"carrier": "USPS",
"trackingNumber": "1Z999AA10123456784",
"trackingUrl": "https://tools.usps.com/go/TrackConfirmAction?tLabels=1Z999AA10123456784",
"cost": 5.99,
"estimatedDelivery": "2023-03-20",
"shippedAt": "2023-03-16T10:00:00Z"
},
"paymentDetails": {
"method": "credit_card",
"status": "paid",
"lastFour": "4242",
"cardType": "Visa",
"paidAt": "2023-03-15T14:35:00Z"
},
"subtotal": 84.97,
"taxAmount": 8.50,
"taxDetails": [
{
"name": "State Tax",
"rate": 0.06,
"amount": 5.10
},
{
"name": "City Tax",
"rate": 0.04,
"amount": 3.40
}
],
"discountAmount": 10.00,
"discountCode": "WELCOME10",
"notes": "Please leave package at front door",
"status_history": [
{
"status": "created",
"timestamp": "2023-03-15T14:30:00Z"
},
{
"status": "processing",
"timestamp": "2023-03-15T14:35:00Z"
},
{
"status": "shipped",
"timestamp": "2023-03-16T10:00:00Z"
},
{
"status": "completed",
"timestamp": "2023-03-16T10:45:00Z"
}
]
}