This function is used to retrieve daily flat-weld length statistical data for a specified machine within a specified time range.
ā Daily flat-weld length data, displayed on a daily basis.
{ "cardId": "123456789100", "startDate": 20230201, "endDate": 20230207 }
curl --location --request POST 'https://mcs-gateway.fscut.com/api/statistics/daily/flat_weld_length' \ --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, "flatWeldLength": 309393.83999999997 }, { "statDate": 20230202, "flatWeldLength": 133819.7 }, { "statDate": 20230203, "flatWeldLength": 226217.71999999997 }, { "statDate": 20230204, "flatWeldLength": 189433.21 }, { "statDate": 20230205, "flatWeldLength": 398197.6000000001 }, { "statDate": 20230206, "flatWeldLength": 437550.84 }, { "statDate": 20230207, "flatWeldLength": 273566.48 } ] } }