BOCHU IoT Api
  1. Machine Management
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
        POST
      • Machine Detailed Information
        POST
      • Machine Status Change Records
        POST
    • 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
      • 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. Machine Management

Machine Detailed Information

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

Function Introduction#

This function is used to query detailed information about an authenticated machine.

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

Responses

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

Example
{
    "status": 0,
    "msg": "OK",
    "data": {
        "nickname": "flat cutting machine",
        "appName": "CypCut",
        "appVer": "6.3.762.8",
        "serial": "FSCUT0-TEST00",
        "cardId": "123456789100",
        "laserModel": "Default",
        "laserPower": "1000",
        "range": "1000 X 1000",
        "licenseValidEnd": "2099-12-30 00:00:00"
    }
}
Modified atย 2024-10-09 01:54:16
Previous
Machine List
Next
Machine Status Change Records
Built with