food-orders / #130
- userId
-
Whitney O'Reilly @whitney.oreilly
- restaurantId
- Durgan Group · Fort Collins · ★ 3.1
- items
-
[ { "menuItemId": 49, "quantity": 2, "unitPrice": 78.67, "lineTotal": 157.34 } ] - subtotal
- 157.34
- deliveryFee
- 6.18
- tip
- 5.15
- total
- 168.67
- currency
- USD
- status
- cancelled
- placedAt
- deliveredAt
- —
Component variants
Medium
#130
#130
Small
food-orders/130 Related
curl -sS \
"https://example-data.com/api/v1/food-orders/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/food-orders/130"
);
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/130"
);
const foodOrder = (await res.json()) as FoodOrder;import requests
res = requests.get(
"https://example-data.com/api/v1/food-orders/130"
)
food_order = res.json() {
"id": 130,
"userId": 99,
"restaurantId": 5,
"items": [
{
"menuItemId": 49,
"quantity": 2,
"unitPrice": 78.67,
"lineTotal": 157.34
}
],
"subtotal": 157.34,
"deliveryFee": 6.18,
"tip": 5.15,
"total": 168.67,
"currency": "USD",
"status": "cancelled",
"placedAt": "2026-04-09T20:42:15.232Z",
"deliveredAt": null
}