BOCHU IoT Api
  1. Statistics Information
BOCHU IoT Api
  • 0. Introduction
  • a. Use our demo to quickly generate request headers
  • b. Manually create the request header
  • 1. Machine Quota
  • 2. API Quota & API Rate Limit
  • Global Error Code
  • Cutting Machine API
    • Machine Management
      • Machine List
      • Machine Detailed Information
      • Machine Status Change Records
    • Real-time Data
      • Machine Operating Status
      • Machine Current Alarm List
      • Machine Ongoing Processing Task
      • Real-time Status of the Cutting System
    • Historical Data
      • Paged Processing Records
    • Statistics Information
      • Summary of Statistical Data for a Period of Time
        POST
      • Daily Alarm Duration
        POST
      • Daily Piercing Count
        POST
      • Daily Idle Time
        POST
      • Daily Laser-On Time
        POST
      • Daily Gas-On Time
        POST
      • Daily Cutting Length
        POST
      • Daily Traveling Distance
        POST
      • Daily Processing Time v2
        POST
    • Task Management
      • Upload Cut Task
  • Welding Machine API
    • Machine Management
      • Machine List
      • Machine Detailed Information
      • Machine Status Change Records
    • Real-time Data
      • Machine Operating Status
    • Historical Data
      • Paged Welding Processing Records
    • Statistics Information
      • Summary of Welding Statistical Data for a Period of Time
      • Daily Flat-Weld Length
      • Daily Flat-Weld Time
      • Daily Vertical-Weld Length
      • Daily Vertical-Weld Time
      • Daily Weld Length
      • Daily Weld Time
      • Daily Weld-Pass Count
      • Daily Idle Time
      • Daily Processing Time
    • Task Management
      • Upload Weld Task
  1. Statistics Information

Summary of Statistical Data for a Period of Time

POST
https://mcs-gateway.fscut.com/api/statistics/sum
Function Description:
This function is used to retrieve summarized statistical data for a specified machine within a specified time range.
Returned Result:
ā‘  Summary of statistical data for the specified time range, including almost all statistical information.

Request

Header Params

Body Params application/json

Example
{
    "cardId": "123456789100",
    "startDate": 20230201,
    "endDate": 20230207
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mcs-gateway.fscut.com/api/statistics/sum' \
--header 'zoneId: America/Chicago' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardId": "123456789100",
    "startDate": 20230201,
    "endDate": 20230207
}'

Responses

🟢200成功
application/json
Body

Example
{
    "status": 0,
    "msg": "OK",
    "data": {
        "laserOn": 91229,
        "cutTime": 150894,
        "idleTime": 171188,
        "cutLength": 1968179.39,
        "moveLength": 7936790.370000001,
        "pierceCount": 24774,
        "gasOn": 115555
    }
}
Modified atĀ 2024-10-09 01:54:40
Previous
Paged Processing Records
Next
Daily Alarm Duration
Built with