# Get Inbound State History ## Get Inbound State History ### 📌 Description This endpoint retrieves the state change history for a specific inbound delivery. The history tracks all status transitions from booking to completion. ### 🔹 Use Cases - Tracking delivery progress through different stages - Auditing status changes for compliance and reporting - Debugging issues by reviewing the state transition timeline - Understanding delivery lifecycle events Endpoint: GET /api/fulfilment/inbound/{id}/state-history Version: 1.0.0 Security: OAuth2 ## Path parameters: - `id` (string, required) ## Response 200 fields (application/json): - `history` (array, required) - `history.changed_by` (string) - `history.created_at` (string, required) - `history.id` (string, required) - `history.inbound_id` (string, required) - `history.new_status` (string, required) - `history.old_status` (string, required) - `history.reason` (string) - `history.source` (string) - `history.wms_status` (string) ## Response default fields (application/json): - `code` (string) Error code Example: "not_found" - `details` (object) Error details - `message` (string) Error message