orders / #152
- userId
-
Maria Senger @maria.senger
- status
- cancelled
- currency
- USD
- subtotal
- 499.65
- tax
- 43.72
- shipping
- 0
- total
- 543.37
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#152
#152
Small
orders/152 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/152" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/152"
);
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/152"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/152"
)
order = res.json() {
"id": 152,
"userId": 120,
"status": "cancelled",
"currency": "USD",
"subtotal": 499.65,
"tax": 43.72,
"shipping": 0,
"total": 543.37,
"placedAt": "2025-01-28T19:48:13.464Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-01-28T19:48:13.464Z",
"updatedAt": "2025-01-28T19:48:13.464Z"
}