# Get a production record Retrieves detailed information about a specific production record. Requires JWT token authentication in the Authorization header. Endpoint: GET /api/control/production/records/{recordId} Version: 2.0.0 Security: bearerAuth ## Path parameters: - `recordId` (string, required) Record identifier Example: "rec_1234567890abcdef" ## Response 200 fields (application/json): - `status` (string) Example: "success" - `data` (object) - `data.recordId` (string) Example: "rec_1234567890abcdef" - `data.sessionId` (string) Example: "6507f1e3c9d8e2a4b1f9c3d5" - `data.workerId` (string) Example: "JS0315" - `data.units` (number) Example: 5 - `data.state` (string) Record insertion state Enum: "pending", "inserted" ## Response 401 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information" ## Response 404 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information" ## Response 500 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information"