example-data.com

order-items / #185

orderId
orders/63
productId
Handcrafted Granite Soap USD296.77
quantity
1
unitPrice
296.77
lineTotal
296.77

Component variants

Related

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

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