IoT Devices
Connect and manage IoT devices in your warehouse
1 min read
IoT Devices
SmartWMS supports connecting IoT devices to monitor warehouse conditions in real time — temperature, humidity, door sensors, forklifts, and more.
Adding a Device
- Go to IoT → Devices
- Click Add Device
- Enter:
- Copy the generated API Key — used by the physical device to send telemetry
Device Types
| Type | Examples |
|---|
| Sensor Hub | Temperature/humidity multi-sensor |
|---|---|
| Gateway | Aggregates data from multiple sensors |
| Forklift Tracker | GPS/RFID vehicle tracker |
| Door Sensor | Dock door open/close monitoring |
| Scale | Weight monitoring |
Device Status
- Online — active heartbeat within last 5 minutes
- Offline — no heartbeat for more than 5 minutes (triggers alert)
Sending Telemetry
Devices send data via REST API:
POST /api/v1/admin/iot/devices/{deviceId}/telemetry
{
"metrics": { "temperature": 4.2, "humidity": 65 },
"timestamp": "2026-03-02T10:00:00Z"
}