Get Order Transactions
GET/api/orders/getordertransactions/:id
Tier: Public — stable, supported for third-party integration.
Returns the audit trail for one order — every recorded transaction (create, scans, state transitions, cancellation, etc.) and its per-item transaction records.
{id} must reference an existing order; an order with no recorded transactions still returns 200 with an empty list.
Request
Responses
- 200
- 400
- 401
- 403
Returns the list of Orders.OrderTransactionHistoryDetailDto (empty if the order has no recorded transactions).
{id} does not match an order (NotFound); or the underlying query failed (error array).
The caller is not authenticated.
The caller lacks Order Read permission.