Get inventory transaction
GET/inventory/transactions/:transactionId
Returns the full detail for a single inventory transaction, including the transaction type, quantity moved, source and destination context, the reference record it originated from (e.g. a purchase order or work order), and any operator notes or reasons attached to the transaction.
Request
Response
- 200
- 401
- 404
Transaction details
Unauthorized — missing or invalid API key
Resource not found
Response
{
"transactionId": "TXN-00892",
"type": "intake",
"inventoryCode": "INV-000312",
"itemName": "Organic Tahini",
"quantity": 200,
"unit": "lbs",
"referenceType": "purchase_order",
"referenceId": "PO-2025-0471",
"purpose": null,
"reason": null,
"notes": null,
"timestamp": "2025-03-15T10:45:00Z"
}