orders / #189
- userId
-
Lemuel Jast @lemuel.jast27
- status
- confirmed
- currency
- USD
- subtotal
- 3267.29
- tax
- 285.89
- shipping
- 0
- total
- 3553.18
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#189
#189
Small
orders/189 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/189" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/189"
);
const order = await res.json();import type { Order } from "https://example-data.com/types/orders.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/orders/189"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/189"
)
order = res.json() {
"id": 189,
"userId": 105,
"status": "confirmed",
"currency": "USD",
"subtotal": 3267.29,
"tax": 285.89,
"shipping": 0,
"total": 3553.18,
"placedAt": "2025-03-11T18:20:51.262Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-03-11T18:20:51.262Z",
"updatedAt": "2025-03-11T18:20:51.262Z"
}