orders / #431
- userId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- status
- shipped
- currency
- USD
- subtotal
- 298.68
- tax
- 26.13
- shipping
- 0
- total
- 324.81
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#431
#431
Small
orders/431 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/431" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/431"
);
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/431"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/431"
)
order = res.json() {
"id": 431,
"userId": 109,
"status": "shipped",
"currency": "USD",
"subtotal": 298.68,
"tax": 26.13,
"shipping": 0,
"total": 324.81,
"placedAt": "2024-11-20T08:22:15.533Z",
"shippedAt": "2024-11-21T23:10:40.542Z",
"deliveredAt": null,
"createdAt": "2024-11-20T08:22:15.533Z",
"updatedAt": "2024-11-21T23:10:40.542Z"
}