# Get irrigation events for local range Returns irrigation events for a project within a local-time range. Auth via API token in x-api-key. Endpoint: GET /api/iot/irrigation Version: 2.0.0 Security: apiKeyAuth ## Query parameters: - `projectId` (string, required) - `from` (string, required) - `to` (string, required) - `timezone` (string, required) ## Response 200 fields (application/json): - `status` (string) Example: "success" - `data` (array) - `data.start_local` (string) Example: "2025-10-09T07:15:00-06:00" - `data.end_local` (string) Example: "2025-10-09T08:00:00-06:00" - `data.duration_min` (number) Example: 45 - `data.volume_l` (number) Example: 1200 - `data.sectorId` (string) Example: "sector_001" ## Response 400 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information" ## Response 401 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"