orders / #403
- userId
-
Maymie Boehm @maymie.boehm90
- status
- confirmed
- currency
- USD
- subtotal
- 2689.47
- tax
- 235.33
- shipping
- 0
- total
- 2924.8
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#403
#403
Small
orders/403 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/403" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/403"
);
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/403"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/403"
)
order = res.json() {
"id": 403,
"userId": 48,
"status": "confirmed",
"currency": "USD",
"subtotal": 2689.47,
"tax": 235.33,
"shipping": 0,
"total": 2924.8,
"placedAt": "2024-12-08T02:53:51.903Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2024-12-08T02:53:51.903Z",
"updatedAt": "2024-12-08T02:53:51.903Z"
}