food-orders / #178
- userId
-
Rubye Emmerich @rubye.emmerich
- restaurantId
- O'Hara and Sons · New Eloisaboro · ★ 4.4
- items
-
[ { "menuItemId": 5, "quantity": 1, "unitPrice": 16.36, "lineTotal": 16.36 } ] - subtotal
- 16.36
- deliveryFee
- 1.92
- tip
- 0.78
- total
- 19.06
- currency
- USD
- status
- delivered
- placedAt
- deliveredAt
Component variants
Medium
#178
#178
Small
food-orders/178 Related
curl -sS \
"https://example-data.com/api/v1/food-orders/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/food-orders/178"
);
const foodOrder = await res.json();import type { FoodOrder } from "https://example-data.com/types/food-orders.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/food-orders/178"
);
const foodOrder = (await res.json()) as FoodOrder;import requests
res = requests.get(
"https://example-data.com/api/v1/food-orders/178"
)
food_order = res.json() {
"id": 178,
"userId": 225,
"restaurantId": 1,
"items": [
{
"menuItemId": 5,
"quantity": 1,
"unitPrice": 16.36,
"lineTotal": 16.36
}
],
"subtotal": 16.36,
"deliveryFee": 1.92,
"tip": 0.78,
"total": 19.06,
"currency": "USD",
"status": "delivered",
"placedAt": "2025-01-09T10:34:13.593Z",
"deliveredAt": "2025-01-09T11:49:57.340Z"
}