example-data.com

order-items / #101

orderId
orders/34
productId
Practical Plastic Gloves USD185.45
quantity
1
unitPrice
185.45
lineTotal
185.45

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/order-items/101" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/order-items/101"
);
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/101"
);
const orderItem = (await res.json()) as OrderItem;
import requests

res = requests.get(
    "https://example-data.com/api/v1/order-items/101"
)
order_item = res.json()
{
  "id": 101,
  "orderId": 34,
  "productId": 180,
  "quantity": 1,
  "unitPrice": 185.45,
  "lineTotal": 185.45
}
Draftbit