This function is used to retrieve daily idle time statistical data for a specified machine within a specified time range.
ā Daily idle time data, displayed on a daily basis.
{ "cardId": "123456789100", "startDate": 20230201, "endDate": 20230207 }
curl --location --request POST 'https://mcs-gateway.fscut.com/api/statistics/daily/idle_time' \ --header 'zoneId: America/Chicago' \ --header 'Content-Type: application/json' \ --data-raw '{ "cardId": "123456789100", "startDate": 20230201, "endDate": 20230207 }'
{ "status": 0, "msg": "OK", "data": { "list": [ { "statDate": 20230201, "idleTime": 1519 }, { "statDate": 20230202, "idleTime": 2435 }, { "statDate": 20230203, "idleTime": 2412 }, { "statDate": 20230204, "idleTime": 3569 }, { "statDate": 20230205, "idleTime": 4580 }, { "statDate": 20230206, "idleTime": 5246 }, { "statDate": 20230207, "idleTime": 5013 } ] } }