system.kanoa.event.getAssetProductionEventsByDay(paramsDict)
Returns asset production data based on the given parameters, formatted with days as 'May-1' and hours in each mode
Parameters
paramsDict Dictionary
| - assetId | Integer | |
| - clientTZOffsetMins | Integer | |
| - endDate | DateTime | |
| - startDate | DateTime |
Returns
productionData pyDataset
Example
startDate = system.date.parse("2026-05-01 00:00:00")
endDate = system.date.parse("2026-05-05 00:00:00")
clientTZOffsetMins = '-420
data = system.kanoa.event.getAssetProductionEvents({'assetId': 510, 'startDate': startDate, 'endDate': endDate, 'clientTZOffsetMins': clientTZOffsetMins})