object OrderHistory
Fields
| Field | Type | Description |
|---|---|---|
id | String | Public API ID for this identifiable. |
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. |
order_id | String | Public API order ID that identifies the related record. |
user_id | String | Public API user ID that identifies the related record. |
account_id | String | Public API account ID that identifies the related record. |
username | String | Username for this order history. |
order_number | String | Order number for this order history. |
information | String | Human-readable information for this order history. |
created_at | ISODateTime | Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
order | Order | Order associated with this order history. |
Referenced By
- MergeableOrder Type
- Order Type
- OrderHistoryEdge Type
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"order_id": "T3JkZXI6MTIzNA==",
"user_id": "VXNlcjoxMjM0",
"account_id": "QWNjb3VudDoxMjM0",
"username": "SO-100045",
"order_number": "SO-100045",
"information": "Order moved to shipped status.",
"created_at": "2026-07-09T15:30:00Z",
"order": {id: "T3JkZXI6MTIzNA==", order_number: "SO-100045"}
}