BOCHU IoT Api
  1. Real-time Data
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
        POST
      • Machine Current Alarm List
        POST
      • Machine Ongoing Processing Task
        POST
      • Real-time Status of the Cutting System
        POST
    • Historical Data
      • Paged Processing Records
    • Statistics Information
      • Summary of Statistical Data for a Period of Time
      • Daily Alarm Duration
      • Daily Piercing Count
      • Daily Idle Time
      • Daily Laser-On Time
      • Daily Gas-On Time
      • Daily Cutting Length
      • Daily Traveling Distance
      • Daily Processing Time v2
    • 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. Real-time Data

Machine Current Alarm List

POST
https://mcs-gateway.fscut.com/api/user_devices/current_alarms

Function Introduction#

This function is used to query the current status overview of authenticated machines owned by the user.

Important Notes#

The cardId should be for an authenticated machine.
The cardId must be within the user's device quota. Devices exceeding the quota will not be allowed for querying.

Request

Header Params

Body Params application/json

Example
{
    "cardId": "123456789100"
}

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/user_devices/current_alarms' \
--header 'zoneId: America/Chicago' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardId": "123456789100"
}'

Responses

๐ŸŸข200ๆˆๅŠŸ
application/json
Body

Example
{
    "status": 0,
    "msg": "OK",
    "data": [
        {
            "alarmCode": "TNcEStopAlarm#309",
            "alarmDesc": "urgent stop",
            "alarmTime": "2023-07-10 14:37:18"
        },
        {
            "alarmCode": "TNcDiagnoseAlarm#310",
            "alarmDesc": "maintenance mode",
            "alarmTime": "2023-07-10 14:37:19"
        }
    ]
}
Modified atย 2024-10-09 01:54:26
Previous
Machine Operating Status
Next
Machine Ongoing Processing Task
Built with