{
"data": [
{
"orderId": "ord_abc123def",
"userId": "usr_1a2b3c4d",
"status": "processing",
"totalAmount": 149.99,
"currency": "USD",
"items": [
{
"orderItemId": "itm_001",
"productId": "prd_laptop001",
"quantity": 1,
"unitPrice": 149.99,
"subtotal": 149.99
}
],
"shippingAddress": {
"street": "123 Main St",
"city": "San Francisco",
"state": "CA",
"postalCode": "94105",
"country": "US"
},
"createdAt": "2024-01-20T10:30:00Z"
},
{
"orderId": "ord_xyz789ghi",
"userId": "usr_5e6f7g8h",
"status": "shipped",
"totalAmount": 299.5,
"currency": "USD",
"items": [
{
"orderItemId": "itm_002",
"productId": "prd_phone001",
"quantity": 1,
"unitPrice": 299.5,
"subtotal": 299.5
}
],
"shippingAddress": {
"street": "456 Oak Ave",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US"
},
"createdAt": "2024-01-20T14:15:00Z"
}
],
"pagination": {
"page": 1,
"pageSize": 20,
"totalItems": 2,
"totalPages": 1
}
}