order-items / #228
- orderId
- orders/77
- productId
-
Fantastic Plastic Pants USD498.19
- quantity
- 2
- unitPrice
- 498.19
- lineTotal
- 996.38
Component variants
Medium
#228
#228
Small
order-items/228 Related
References
curl -sS \
"https://example-data.com/api/v1/order-items/228" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/order-items/228"
);
const orderItem = await res.json();import type { OrderItem } from "https://example-data.com/types/order-items.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/order-items/228"
);
const orderItem = (await res.json()) as OrderItem;import requests
res = requests.get(
"https://example-data.com/api/v1/order-items/228"
)
order_item = res.json() {
"id": 228,
"orderId": 77,
"productId": 118,
"quantity": 2,
"unitPrice": 498.19,
"lineTotal": 996.38
}