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

Daily Idle Time

POST
https://mcs-gateway.fscut.com/api/statistics/daily/idle_time
Function Description:
This function is used to retrieve daily idle time statistical data for a specified machine within a specified time range.
Returned Result:
ā‘  Daily idle time data, displayed on a daily basis.

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/daily/idle_time' \
--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": {
        "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
            }
        ]
    }
}
Modified atĀ 2024-10-09 01:54:03
Previous
Daily Piercing Count
Next
Daily Laser-On Time
Built with