shipments / #68
- orderId
- orders/119
- carrier
- ups
- trackingNumber
- RW9KAMTA1SC2X26X
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#68
#68
Small
shipments/68 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/68"
);
const shipment = await res.json();import type { Shipment } from "https://example-data.com/types/shipments.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/shipments/68"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/68"
)
shipment = res.json() {
"id": 68,
"orderId": 119,
"carrier": "ups",
"trackingNumber": "RW9KAMTA1SC2X26X",
"status": "label_created",
"shippedAt": "2025-02-06T01:19:01.224Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-02-15T02:56:40.235Z",
"createdAt": "2025-02-06T01:19:01.224Z"
}