order-items / #146
- orderId
- orders/49
- productId
-
Luxurious Ceramic Car USD335.85
- quantity
- 3
- unitPrice
- 335.85
- lineTotal
- 1007.55
Component variants
Medium
#146
#146
Small
order-items/146 Related
References
curl -sS \
"https://example-data.com/api/v1/order-items/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/order-items/146"
);
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/146"
);
const orderItem = (await res.json()) as OrderItem;import requests
res = requests.get(
"https://example-data.com/api/v1/order-items/146"
)
order_item = res.json() {
"id": 146,
"orderId": 49,
"productId": 168,
"quantity": 3,
"unitPrice": 335.85,
"lineTotal": 1007.55
}