orders / #240
- userId
-
Wendy Borer @wendy_borer
- status
- cancelled
- currency
- USD
- subtotal
- 502.23
- tax
- 43.95
- shipping
- 0
- total
- 546.18
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#240
#240
Small
orders/240 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/240" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/240"
);
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/240"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/240"
)
order = res.json() {
"id": 240,
"userId": 141,
"status": "cancelled",
"currency": "USD",
"subtotal": 502.23,
"tax": 43.95,
"shipping": 0,
"total": 546.18,
"placedAt": "2024-06-14T11:15:15.914Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2024-06-14T11:15:15.914Z",
"updatedAt": "2024-06-14T11:15:15.914Z"
}