This function is used to retrieve daily gas-on time statistical data for a specified machine within a specified time range.
ā Daily gas-on 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/gas_on' \ --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, "gasOn": 13417 }, { "statDate": 20230202, "gasOn": 9429 }, { "statDate": 20230203, "gasOn": 13154 }, { "statDate": 20230204, "gasOn": 13694 }, { "statDate": 20230205, "gasOn": 21155 }, { "statDate": 20230206, "gasOn": 24400 }, { "statDate": 20230207, "gasOn": 20306 } ] } }