BOCHU IoT Api
  1. Historical 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
      • Machine Current Alarm List
      • Machine Ongoing Processing Task
      • Real-time Status of the Cutting System
    • Historical Data
      • Real-time Status of Welding System
        POST
      • Paged Processing Records
        POST
    • 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. Historical Data

Real-time Status of Welding System

Developing
POST
/api/user_devices/weld_system_state

Function Introduction#

This function queries the status of the user's authorized welding machines.

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

Body Params application/json

Example
{
    "cardId": "12345"
}

Request Code 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 '/api/user_devices/weld_system_state' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardId": "12345"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 0,
    "msg": "ok",
    "data": {
        "robotAxisCoor": [
            1,
            2,
            3,
            4,
            5,
            6
        ],
        "gantryAxisCoor": [
            1,
            2,
            3
        ],
        "cmAxisCoor": [
            1,
            2,
            3,
            4,
            5,
            6,
            7,
            8
        ],
        "robotAxisSpeed": [
            1,
            2,
            3,
            4,
            5,
            6
        ],
        "gantryAxisSpeed": [
            1,
            2,
            3
        ],
        "cmAxisSpeed": [
            1,
            2,
            3,
            4,
            5,
            6,
            7,
            8
        ],
        "tcpPosition": [
            1,
            2,
            3,
            4,
            5,
            6
        ],
        "weldingCurrent": 220,
        "weldingVoltage": 100
    }
}
Modified at 2025-10-28 02:20:51
Previous
Real-time Status of the Cutting System
Next
Paged Processing Records
Built with