Query statistical data of daily alarm duration for a specific machine within a specified time rangeThe query time range extends up to yesterday
① Display daily alarm duration by day
{ "cardId": "1234567890", "startDate": 20231101, "endDate": 20231110 }
curl --location --request POST '/statistics/daily/alarm_time' \ --header 'zoneId: America/Chicago' \ --header 'Content-Type: application/json' \ --data-raw '{ "cardId": "1234567890", "startDate": 20231101, "endDate": 20231110 }'
{ "status": 0, "msg": "OK", "data": { "list": [ { "statDate": 20231101, "alarmTime": 12345 } ] } }