orders / #55
- userId
-
Cassidy Price-Schimmel @cassidy.price-schimmel
- status
- cancelled
- currency
- USD
- subtotal
- 1272.57
- tax
- 111.35
- shipping
- 0
- total
- 1383.92
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/55"
);
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/55"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/55"
)
order = res.json() {
"id": 55,
"userId": 227,
"status": "cancelled",
"currency": "USD",
"subtotal": 1272.57,
"tax": 111.35,
"shipping": 0,
"total": 1383.92,
"placedAt": "2024-12-19T00:23:35.063Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2024-12-19T00:23:35.063Z",
"updatedAt": "2024-12-19T00:23:35.063Z"
}