order-items / #218
- orderId
- orders/74
- productId
-
Fantastic Ceramic Keyboard USD138.45
- quantity
- 1
- unitPrice
- 138.45
- lineTotal
- 138.45
Component variants
Medium
#218
#218
Small
order-items/218 Related
References
curl -sS \
"https://example-data.com/api/v1/order-items/218" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/order-items/218"
);
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/218"
);
const orderItem = (await res.json()) as OrderItem;import requests
res = requests.get(
"https://example-data.com/api/v1/order-items/218"
)
order_item = res.json() {
"id": 218,
"orderId": 74,
"productId": 60,
"quantity": 1,
"unitPrice": 138.45,
"lineTotal": 138.45
}