food-orders / #142
- userId
-
Myrtie Daniel @myrtie_daniel33
- restaurantId
- Robel, Walter and Davis · Honolulu · ★ 4.4
- items
-
[ { "menuItemId": 21, "quantity": 2, "unitPrice": 26.89, "lineTotal": 53.78 } ] - subtotal
- 53.78
- deliveryFee
- 4.16
- tip
- 0.79
- total
- 58.73
- currency
- USD
- status
- cancelled
- placedAt
- deliveredAt
- —
Component variants
Medium
#142
#142
Small
food-orders/142 Related
curl -sS \
"https://example-data.com/api/v1/food-orders/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/food-orders/142"
);
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/142"
);
const foodOrder = (await res.json()) as FoodOrder;import requests
res = requests.get(
"https://example-data.com/api/v1/food-orders/142"
)
food_order = res.json() {
"id": 142,
"userId": 45,
"restaurantId": 2,
"items": [
{
"menuItemId": 21,
"quantity": 2,
"unitPrice": 26.89,
"lineTotal": 53.78
}
],
"subtotal": 53.78,
"deliveryFee": 4.16,
"tip": 0.79,
"total": 58.73,
"currency": "USD",
"status": "cancelled",
"placedAt": "2025-09-27T15:30:31.797Z",
"deliveredAt": null
}