1. Machines and Slots
Lingye Open API
  • Authentication
    • Login
      POST
    • Validate token
      POST
  • Organizations
    • List organizations
      POST
    • Create organization
      POST
    • Update organization
      POST
    • Delete organization
      POST
    • List personnel
      POST
    • Create personnel
      POST
    • Update personnel
      POST
    • Delete personnel
      POST
    • List back-office users
      POST
  • Product Catalog
    • List product categories
      POST
    • List products
      POST
    • Create, update, or delete product category
      POST
    • Create, update, or delete product
      POST
    • Delete product
      POST
  • Machines and Slots
    • List machines
      POST
    • Query slot inventory
      POST
    • Replenish or edit slot product
      POST
    • Replenish or edit slot product (same as openapi_saveRoad)
      POST
    • Query locker cell information
      POST
    • Save or update existing locker cell information
      POST
    • Open locker cell remotely
      POST
    • Trigger one-time RFID inventory
      POST
    • Update machine basic information
      POST
    • Query locker cell records
      POST
    • Query inventory change records
      POST
  • Orders
    • List orders
    • List borrow orders
  • Work Orders
    • Create or update material requisition work order
  • Events and Webhooks
    • Customer endpoint: pickup work order query
    • Customer endpoint: borrow/return work order query
    • Webhook: slot inventory change notification
    • Webhook: order status notification
    • Webhook: borrow order status notification
  • Not Public
    • MES integration reference (not public)
  • Reports
    • Vending machine operating report
    • Inventory change statistics
    • Inventory change statistics (lite)
  • Lathes
    • CNC
      • List lathes / CNC
      • Update lathe / CNC
  • 数据模型
    • OperationSuccess
  1. Machines and Slots

Trigger one-time RFID inventory

POST
/adminapi/openapi_rfidInventory
Send a one-time RFID inventory command by machine code. The request must include antennas, which are global antenna numbers configured and enabled in the PC-side RFID settings. Android posts the read result directly to callback_url.

请求参数

Query 参数

Header 参数

Body 参数
application/json

示例
{
    "jqcode": "10339",
    "callback_url": "http://customer.example.com/rfid/callback",
    "client_request_id": "rand-20260617-0001",
    "antennas": [
        5
    ]
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
cURL
curl --location 'https://api.en.gdlykj.com/adminapi/openapi_rfidInventory?jqcode=10339&callback_url=http%3A%2F%2Fcustomer.example.com%2Frfid%2Fcallback&client_request_id=rand-20260617-0001&antennas=5%2C6%2C7%2C8' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data '{
    "jqcode": "10339",
    "callback_url": "http://customer.example.com/rfid/callback",
    "client_request_id": "rand-20260617-0001",
    "antennas": [
        5
    ]
}'

返回响应

🟢200
application/json
See endpoint description for details.
Bodyapplication/json

示例
{
    "code": 200,
    "msg": "success",
    "data": {
        "request_no": "RFID2026061708000747564517",
        "client_request_id": "rand-20260617-0001",
        "jqcode": "10339",
        "antennas": [
            5,
            6,
            7,
            8
        ],
        "status": "sent"
    }
}
🔴500
修改于 2026-07-07 11:41:57
上一页
Open locker cell remotely
下一页
Update machine basic information
Built with