- SwitchBot API
This document describes a collection of SwitchBot API methods, examples, and best practices for, but not limited to, IoT hobbyists, developers, and gurus to make their own smart home programs or applications.
Please follow these steps,
- Download the SwitchBot app on App Store or Google Play Store
- Register a SwitchBot account and log in into your account
- Generate an Open Token within the app a) Go to Profile > Preference b) Tap App Version 10 times. Developer Options will show up c) Tap Developer Options d) Tap Get Token
- Roll up your sleeves and get your hands dirty with SwitchBot OpenAPI!
The token returned from the SwitchBot Cloud is an encrypted open token that grants the user developer-level permissions. The user will be able to add, delete, edit, and look up his or her user data including profile data and data associated with the devices that have been added to the user's account.
The following table provides definitions to the terms to be frequently mentioned in the subsequent sections.
Term | Description |
---|---|
Hub | Generally referred to these devices, SwitchBot Hub Model No. SwitchBot Hub S1/SwitchBot Hub Mini Model No. W0202200/SwitchBot Hub Plus Model No. SwitchBot Hub S1 |
Hub Mini | Short for SwitchBot Hub Mini Model No. W0202200 |
Hub Plus | Short for SwitchBot Hub Plus Model No. SwitchBot Hub S1 |
Bot | Short for SwitchBot Bot Model No. SwitchBot S1 |
Curtain | Short for SwitchBot Curtain Model No. W0701600 |
Plug | Short for SwitchBot Plug Model No. SP11 |
Meter | Short for SwitchBot Thermometer and Hygrometer Model No. SwitchBot MeterTH S1 |
Meter Plus (JP) | Short for SwitchBot Thermometer and Hygrometer Plus (JP) Model No. W2201500 |
Meter Plus (US) | Short for SwitchBot Thermometer and Hygrometer Plus (US) Model No. W2301500 |
Motion Sensor | Short for SwitchBot Motion Sensor Model No. W1101500 |
Contact Sensor | Short for SwitchBot Contact Sensor Model No. W1201500 |
Color Bulb | Short for SwitchBot Color Bulb Model No. W1401400 |
Smart Fan | Short for SwitchBot Smart Fan Model No. W0601100 |
Strip Light | Short for SwitchBot LED Strip Light Model No. W1701100 |
Plug Mini (US) | Short for SwitchBot Plug Mini (US) Model No. W1901400 |
Plug Mini (JP) | Short for SwitchBot Plug Mini (JP) Model No. W2001400 |
Lock | Short for SwitchBot Lock Model No. W1601700 |
Robot Vacuum Cleaner S1 | Short for SwitchBot Robot Vacuum Cleaner S1 Model No. W3011000; currently only available in Japan |
Robot Vacuum Cleaner S1 Plus | Short for SwitchBot Robot Vacuum Cleaner S1 Plus Model No. W3011010; currently only available in Japan |
Cloud Service | An SwitchBot app feature that 1. enables SwitchBot products to be discovered and communicated with third-party services voice control services, 2. allows users to create customized smart scenes and Android widgets. For BLE-based devices such as Bot and Curtain, you MUST first add a Hub/Hub Mini/Hub Plus and then enable Cloud Service on the Settings page in order to make use of the web API! |
https://api.switch-bot.com
The following request types are supported,
- GET
- PUT
- POST
- DELETE
For POST
requests, use application/json; charset=utf8
as the Content-Type
The amount of API calls per day is limited to 10000 times. Going over that limit will return "Unauthorized."
The following parameters need to be included into the header,
Parameter | Type | Location | Required | Description |
---|---|---|---|---|
Authorization | String | header | Yes | Open Token acquired |
The following table lists the most common HTTP error response,
Code | Name | Description |
---|---|---|
400 | Bad Request | The client has issued an invalid request. This is commonly used to specify validation errors in a request payload. |
401 | Unauthorized | Authorization for the API is required, but the request has not been authenticated. |
403 | Forbidden | The request has been authenticated but does not have appropriate permissions, or a requested resource is not found. |
404 | Not Found | Specifies the requested path does not exist. |
406 | Not Acceptable | The client has requested a MIME type via the Accept header for a value not supported by the server. |
415 | Unsupported Media Type | The client has defined a contentType header that is not supported by the server. |
422 | Unprocessable Entity | The client has made a valid request, but the server cannot process it. This is often used for APIs for which certain limits have been exceeded. |
429 | Too Many Requests | The client has exceeded the number of requests allowed for a given time window. |
500 | Internal Server Error | An unexpected error on the SmartThings servers has occurred. These errors should be rare. |
The devices API is used to access the properties and states of SwitchBot devices and to send control commands to those devices.
GET /v1.0/devices
Get a list of devices, which include physical devices and virtual infrared remote devices that have been added to the current user's account.
Physical devices refer to the following SwitchBot products,
- Hub
- Hub Plus
- Hub Mini
- Bot (MUST enable Cloud Service first)
- Curtain (MUST enable Cloud Service first)
- Plug
- Meter (MUST enable Cloud Service first)
- Motion Sensor (MUST enable Cloud Service first)
- Contact Sensor (MUST enable Cloud Service first)
- Color Bulb
- Humidifier
- Smart Fan
- Strip Light
- Plug Mini (US)
- Plug Mini (JP)
- Lock
- Meter Plus (JP) (MUST enable Cloud Service first)
- Meter Plus (US) (MUST enable Cloud Service first)
new
Robot Vacuum Cleaner S1new
Robot Vacuum Cleaner S1 Plus
Virtual infrared remote devices refer to virtual devices that are used to simulate infrared signals of a home appliance remote control. A SwitchBot Hub Plus / Hub Mini is required in order to be able to create these virtual devices within the app. The types of appliances supported include,
- Air Conditioner
- TV
- Light
- IPTV/Streamer
- Set Top Box
- DVD
- Fan
- Projector
- Camera
- Air Purifier
- Speaker
- Water Heater
- Vacuum Cleaner
- Others
The response is basically a JSON object, which contains the following properties,
Key Name | Value Type |
---|---|
statusCode | Integer |
message | String |
body | Object |
The body object contains the following properties,
Key Name | Value Type | Description |
---|---|---|
deviceList | Array | a list of physical devices |
infraredRemoteList | Array | a list of virtual infrared remote devices |
The deviceList array contains a list of objects with the following key-value attributes,
Key | Value Type | Description |
---|---|---|
deviceId | String | device ID |
deviceName | String | device name |
deviceType | String | device type |
enableCloudService | Boolean | determines if Cloud Service is enabled or not for the current device |
hubDeviceId | String | device's parent Hub ID |
curtainDevicesIds | Array | only available for Curtain devices. a list of Curtain device IDs such that the Curtain devices are being paired or grouped |
calibrate | Boolean | only available for Curtain/Lock devices. determines if the open position and the close position of a device have been properly calibrated or not |
group | Boolean | only available for Curtain devices. determines if a Curtain is paired with or grouped with another Curtain or not |
master | Boolean | only available for Curtain devices. determines if a Curtain is the master device or not when paired with or grouped with another Curtain |
openDirection | String | only available for Curtain devices. the opening direction of a Curtain |
The infraredRemoteList array contains a list of objects with the following key-value attributes,
Key | Value Type | Description |
---|---|---|
deviceId | String | device ID |
deviceName | String | device name |
remoteType | String | device type |
hubDeviceId | String | remote device's parent Hub ID |
The response may contain the following codes and messages,
Status Code | Body Content | Message | Description |
---|---|---|---|
100 | Device list object | success | Returns an object that contains two device lists |
n/a | n/a | Unauthorized | Http 401 Error. User permission is denied due to invalid token. |
190 | n/a | System error | Device internal error due to device states not synchronized with server |
Request
GET https://api.switch-bot.com/v1.0/devices
Response
{
"statusCode": 100,
"body": {
"deviceList": [
{
"deviceId": "500291B269BE",
"deviceName": "Living Room Humidifier",
"deviceType": "Humidifier",
"enableCloudService": true,
"hubDeviceId": "000000000000"
}
],
"infraredRemoteList": [
{
"deviceId": "02-202008110034-13",
"deviceName": "Living Room TV",
"remoteType": "TV",
"hubDeviceId": "FA7310762361"
}
]
},
"message": "success"
}
GET /v1.0/devices/{deviceId}/status
Get the status of a physical device that has been added to the current user's account.
Physical devices refer to the following SwitchBot products,
- Bot
- Plug
- Curtain
- Meter
- Motion Sensor
- Contact Sensor
- Color Bulb
- Humidifier
- Smart Fan
- Strip Light
- Plug Mini (US)
- Plug Mini (JP)
- Lock
- Meter Plus (JP)
- Meter Plus (US)
new
Robot Vacuum Cleaner S1new
Robot Vacuum Cleaner S1 Plus
Name | Type | Required | Description |
---|---|---|---|
deviceId | String | Yes | device ID |
The response is basically a JSON object, which contains the following properties,
Key Name | Value Type |
---|---|
statusCode | Integer |
message | String |
body | Object |
body object contains the following properties,
Key | Value Type | Used by Products | Description |
---|---|---|---|
deviceId | String | All | device ID |
deviceType | String | All | device type |
hubDeviceId | String | All | device's parent Hub ID |
power | String | Bot/Plug/Humidifier/Color Bulb/Strip Light/Plug Mini | ON/OFF state |
humidity | Integer | Meter/Meter Plus/Humidifier | humidity percentage |
temperature | Float | Meter/Meter Plus/Humidifier | temperature in celsius |
nebulizationEfficiency | Integer | Humidifier | atomization efficiency % |
auto | Boolean | Humidifier | determines if a Humidifier is in Auto Mode or not |
childLock | Boolean | Humidifier | determines if a Humidifier's safety lock is on or not |
sound | Boolean | Humidifier | determines if a Humidifier is muted or not |
calibrate | Boolean | Curtain/Lock | determines if a device has been calibrated or not |
group | Boolean | Curtain | determines if a Curtain is paired with or grouped with another Curtain or not |
moving | Boolean | Curtain | determines if a Curtain is moving or not |
slidePosition | Integer | Curtain | the percentage of the distance between the calibrated open position and closed position that Curtain has traversed |
mode | Integer | Smart Fan | fan mode |
speed | Integer | Smart Fan | fan speed |
shaking | Boolean | Smart Fan | determines if the fan is swinging or not |
shakeCenter | Integer | Smart Fan | the fan's swing direciton |
shakeRange | Integer | Smart Fan | the fan's swing range, 0~120° |
moveDetected | Boolean | Motion Sensor/Contact Sensor | determines if motion is detected |
brightness | String | Motion Sensor/Contact Sensor | if the ambient environment is bright or dim |
openState | String | Contact Sensor | open/close/timeOutNotClose |
brightness | Integer | Color Bulb/Strip Light | the brightness value, range from 1 to 100 |
color | String | Color Bulb/Strip Light | the color value, RGB "255:255:255" |
colorTemperature | Integer | Color Bulb | the color temperature value, range from 2700 to 6500 |
lackWater | Boolean | Humidifier | determines if the water tank is empty or not |
voltage | Integer | Plug Mini | Current voltage of the device (Unit: V) |
weight | Integer | Plug Mini | the power consumption of the device for the day (Unit: W/min) |
electricityOfDay | Integer | Plug Mini | How long the device has been used for the day (Unit: min) |
electricCurrent | Integer | Plug Mini | current of the device (Unit: A) at the moment |
lockState | String | Lock | determines if the lock is locked or not |
doorState | String | Lock | determines if the door is closed or not |
workingStatus | String | Robot Vacuum Cleaner S1/ S1 Plus | the working status of the device, e.g. Cleaning, Paused |
onlineStatus | String | Robot Vacuum Cleaner S1/ S1 Plus | determines if the device is online or offline |
battery | Integer | Robot Vacuum Cleaner S1/ S1 Plus | the battery level |
The reponses may contain the following codes and message,
Status Code | Body Content | Message | Description |
---|---|---|---|
100 | Device list object | success | Returns an object that contains two device lists |
n/a | n/a | Unauthorized | Http 401 Error. User permission is denied due to invalid token. |
190 | n/a | System error | Device internal error due to device states not synchronized with server |
Request the status of a SwitchBot Thermometer and Hygrometer
Request
GET https://api.switch-bot.com/v1.0/devices/C271111EC0AB/status
Response
{
"statusCode": 100,
"body": {
"deviceId": "C271111EC0AB",
"deviceType": "Meter",
"hubDeviceId": "FA7310762361",
"humidity": 52,
"temperature": 26.1
},
"message": "success"
}
Request the status of a SwitchBot Curtain
Request
GET https://api.switch-bot.com/v1.0/devices/E2F6032048AB/status
Response
{
"statusCode": 100,
"body": {
"deviceId": "E2F6032048AB",
"deviceType": "Curtain",
"hubDeviceId": "FA7310762361",
"calibrate": true,
"group": false,
"moving": false,
"slidePosition": 0
},
"message": "success"
}
POST /v1.0/devices/{deviceId}/commands
Send control commands to physical devices and virtual infrared remote devices.
The table below describes all the available commands for physical devices,
deviceType | commandType | Command | command parameter | Description |
---|---|---|---|---|
Bot | command | turnOff | default | set to OFF state |
Bot | command | turnOn | default | set to ON state |
Bot | command | press | default | trigger press |
Plug | command | turnOn | default | set to ON state |
Plug | command | turnOff | default | set to OFF state |
Curtain | command | setPosition | index0,mode0,position0 e.g. 0,ff,80 |
mode: 0 (Performance Mode), 1 (Silent Mode), ff (default mode) position: 0~100 (0 means opened, 100 means closed) |
Curtain | command | turnOff | default | equivalent to set position to 100 |
Curtain | command | turnOn | default | equivalent to set position to 0 |
Humidifier | command | turnOff | default | set to OFF state |
Humidifier | command | turnOn | default | set to ON state |
Humidifier | command | setMode | auto or 101 or102 or 103 or {0~100} |
auto, set to Auto Mode, 101, set atomization efficiency to 34%, 102, set atomization efficiency to 67%, 103, set atomization efficiency to 100% |
Smart Fan | command | turnOn | default | set to ON state |
Smart Fan | command | turnOff | default | set to OFF state |
Smart Fan | command | setAllStatus | power,fanMode, fanSpeed,shakeRange e.g. on,1,1,60 |
power: off/on, fanMode: 1/2, fanSpeed: 1/2/3/4, shakeRange: 0~120 fanMode: 1 (Standard), 2 (Natural) |
Color Bulb | command | turnOn | default | set to ON state |
Color Bulb | command | turnOff | default | set to OFF state |
Color Bulb | command | toggle | default | toggle state |
Color Bulb | command | setBrightness | {1-100} |
set brightness |
Color Bulb | command | setColor | "{0-255}:{0-255}:{0-255}" |
set RGB color value |
Color Bulb | command | setColorTemperature | {2700-6500} |
set color temperature |
Strip Light | command | turnOn | default | set to ON state |
Strip Light | command | turnOff | default | set to OFF state |
Strip Light | command | toggle | default | toggle state |
Strip Light | command | setBrightness | {1-100} |
set brightness |
Strip Light | command | setColor | "{0-255}:{0-255}:{0-255}" |
set RGB color value |
Plug Mini (US/JP) | command | turnOn | default | set to ON state |
Plug Mini (US/JP) | command | turnOff | default | set to OFF state |
Plug Mini (US/JP) | command | toggle | default | toggle state |
Robot Vacuum Cleaner S1 | command | start | default | start vacuuming |
Robot Vacuum Cleaner S1 | command | stop | default | stop vacuuming |
Robot Vacuum Cleaner S1 | command | dock | default | return to charging dock |
Robot Vacuum Cleaner S1 | command | PowLevel | {0-3} |
set suction power level: 0 (Quiet), 1 (Standard), 2 (Strong), 3 (MAX) |
Robot Vacuum Cleaner S1 Plus | command | start | default | start vacuuming |
Robot Vacuum Cleaner S1 Plus | command | stop | default | stop vacuuming |
Robot Vacuum Cleaner S1 Plus | command | dock | default | return to charging dock |
Robot Vacuum Cleaner S1 Plus | command | PowLevel | {0-3} |
set suction power level: 0 (Quiet), 1 (Standard), 2 (Strong), 3 (MAX) |
The table below describes all the available commands for virtual infrared remote devices,
deviceType | commandType | Command | command parameter | Description |
---|---|---|---|---|
All home appliance types except Others | "" | turnOn | default | every home appliance can be turned on by default |
All home appliance types except Others | command | turnOff | default | every home appliance can be turned off by default |
Others | customize |
{user-defined button name} | default | all user-defined buttons must be configured with commandType=customize |
Air Conditioner | command | setAll | {temperature},{mode},{fan speed},{power state} e.g. 26,1,3,on |
the unit of temperature is in celsius; modes include 1 (auto), 2 (cool), 3 (dry), 4 (fan), 5 (heat); fan speed includes 1 (auto), 2 (low), 3 (medium), 4 (high); power state includes on and off |
TV, IPTV/Streamer, Set Top Box | command | SetChannel | {channel number}, e.g. 15 | set the TV channel to switch to |
command | volumeAdd | default | volume up | |
command | volumeSub | default | volume down | |
command | channelAdd | default | next channel | |
command | channelSub | default | previous channel | |
DVD, Speaker | command | setMute | default | mute/unmute |
command | FastForward | default | fast forward | |
command | Rewind | default | rewind | |
command | Next | default | next track | |
command | Previous | default | last track | |
command | Pause | default | pause | |
command | Play | default | play/resume | |
command | Stop | default | stop | |
Speaker | command | volumeAdd | default | volume up |
command | volumeSub | default | volume down | |
Fan | command | swing | default | swing |
command | timer | default | set timer | |
command | lowSpeed | default | set fan speed to low | |
command | middleSpeed | default | set fan speed to medium | |
command | highSpeed | default | set fan speed to high | |
Light | command | brightnessUp | default | brightness up |
command | brightnessDown | default | brightness down |
Note: Most of the devices support
turnOn
orturnOff
, which are case-sensitive. For infrared remote devices, when you have created customized buttons, you must setcommandType
tocustomize
, otherwise the command will not work.command
needs to be set to the name of the customized button.
Name | Type | Required | Description |
---|---|---|---|
deviceId | String | Yes | device ID |
Name | Type | Required | Description |
---|---|---|---|
command | String | Yes | the name of the command |
parameter | String | No | some commands require parameters, such as SetChannel |
commandType | String | No | for customized buttons, this needs to be set to customzie |
The response is basically a JSON object, which contains the following properties,
Key Name | Value Type |
---|---|
statusCode | Integer |
message | String |
body | Object |
Error code/message | Description |
---|---|
{"message": "Unauthorized"} | Http 401 Error. User permission is denied due to invalid token. |
151 | device type error |
152 | device not found |
160 | command is not supported |
161 | device offline |
171 | hub device is offline |
190 | Device internal error due to device states not synchronized with server. Or command format is invalid. |
Turn a Bot on
Request
POST https://api.switch-bot.com/v1.0/devices/210/commands
{
"command": "turnOn",
"parameter": "default",
"commandType": "command"
}
Response
{
"statusCode": 100,
"body": {},
"message": "success"
}
Set the color value of a Color Bulb Request
POST https://api.switch-bot.com/v1.0/devices/84F70353A411/commands
{
"command": "setColor",
"parameter": "122:80:20", // yellow
"commandType": "command"
}
Response
{
"statusCode": 100,
"body": {},
"message": "success"
}
Set an Air Conditioner
Request
POST https://api.switch-bot.com/v1.0/devices/02-202007201626-70/commands
{
"command": "setAll",
"parameter": "26,1,3,on",
"commandType": "command"
}
Response
{
"statusCode": 100,
"body": {},
"message": "success"
}
Trigger a customized button
Request
POST https://api.switch-bot.com/v1.0/devices/02-202007201626-10/commands
{
"command": "ボタン", // the name of the customized button
"parameter": "default",
"commandType": "customize"
}
Response
{
"statusCode": 100,
"body": {},
"message": "success"
}
The scenes API is used to access the smart scenes created by a user and to execute manual scenes.
GET /v1.0/scenes
Get a list of manual scenes created by the current user.
The response is basically a JSON object, which contains the following properties,
Key Name | Value Type |
---|---|
statusCode | Integer |
message | String |
body | Object |
The body object contains a list of objects, which has the following properties,
Key | Type | Description |
---|---|---|
sceneId | String | a scene's ID |
sceneName | String | a scene's name |
Error code/message | Description |
---|---|
{"message": "Unauthorized"} | Http 401 Error. User permission is denied due to invalid token. |
190 | Device internal error due to device states not synchronized with server |
Request
GET https://api.switch-bot.com/v1.0/scenes
Response
{
"statusCode": 100,
"body": [
{
"sceneId": "T02-20200804130110",
"sceneName": "Close Office Devices"
},
{
"sceneId": "T02-202009221414-48924101",
"sceneName": "Set Office AC to 25"
},
{
"sceneId": "T02-202011051830-39363561",
"sceneName": "Set Bedroom to 24"
},
{
"sceneId": "T02-202011051831-82928991",
"sceneName": "Turn off home devices"
},
{
"sceneId": "T02-202011062059-26364981",
"sceneName": "Set Bedroom to 26 degree"
}
],
"message": "success"
}
POST /v1.0/scenes/{sceneId}/execute
Sends a request to execute a manual scene.
Name | Type | Required | Description |
---|---|---|---|
sceneId | String | Yes | scene ID |
The response is basically a JSON object, which contains the following properties,
Key Name | Value Type |
---|---|
statusCode | Integer |
message | String |
body | Object |
Error code/message | Description |
---|---|
{"message": "Unauthorized"} | Http 401 Error. User permission is denied due to invalid token. |
190 | Device internal error due to device states not synchronized with server |
Request
POST https://api.switch-bot.com/v1.0/scenes/T02-202009221414-48924101/execute
Response
{
"statusCode": 100,
"body": {},
"message": "success"
}
Configure the url that all the webhook events will be sent to
POST https://api.switch-bot.com/v1.0/webhook/setupWebhook
Key Name | Value Type | Description |
---|---|---|
action | String | the type of actions |
url | String | the url where all the events are sent to |
deviceList | String | the list of device ids, currently only supports "ALL" |
Head
{
"Content-type":"application/json",
"Authorization":your_token // enter your API token
}
Body
{
"action":"setupWebhook",
"url":url1, // enter your url
"deviceList":"ALL"
}
Sample
{
"statusCode": 100,
"body": {},
"message": ""
}
Get the current configuration info of the webhook
POST https://api.switch-bot.com/v1.0/webhook/queryWebhook
Key Name | Value Type | Description |
---|---|---|
action | String | the type of actions, currently supports "queryUrl", "queryDetails" |
url | String | the url where all the events are sent to. you need to specify the url when using queryDetails |
Head
{
"Content-type":"application/json",
"Authorization":your_token // enter your API token
}
Body
{
"action": "queryUrl"
}
Head
{
"Content-type":"application/json",
"Authorization":your_token // enter your API token
}
Body
{
"action": "queryDetails",
"urls":[url1] // get infos of a url
}
{
"statusCode": 100,
"body": {
"urls": [url1] // the target url
},
"message": ""
}
{
"statusCode": 100,
"body": [
{
"url":url1,
"createTime":123456,
"lastUpdateTime":123456,
"deviceList": "ALL",
"enable":true
}
],
"message": ""
}
Update the configuration of the webhook
POST https://api.switch-bot.com/v1.0/webhook/queryWebhook
Key Name | Value Type | Description |
---|---|---|
action | String | the type of actions |
config | Object | the configuration details you want to update. you can change the current url or enable/disable the webhook. refer to the example below |
Head
{
"Content-type":"application/json",
"Authorization":your_token // enter your API token
}
Body
{
"action": "updateWebhook",
"config":{
"url":url1,
"enable":true
}
}
{
"statusCode": 100,
"body": {},
"message": ""
}
Delete the configuration of the webhook
POST https://api.switch-bot.com/v1.0/webhook/deleteWebhook
Key Name | Value Type | Description |
---|---|---|
action | String | the type of actions |
url | String | the url where all the events are sent to |
Head
{
"Content-type":"application/json",
"Authorization":your_token // enter your API token
}
Body
{
"action": "deleteWebhook",
"url":url1
}
{
"statusCode": 100,
"body": {},
"message": ""
}
When an event gets triggered, SwitchBot server will send a POST
request to the url you have configured. Refer to the table below for a list of products that support webhook.
Device Type | Product |
---|---|
WoPresence | Motion Sensor |
WoContact | Contact Sensor |
WoLock | Lock |
WoCamera | Indoor Cam |
WoPanTiltCam | Pan/Tilt Cam |
WoBulb | Color Bulb |
WoStrip | LED Strip Light |
WoPlugUS | Plug Mini (US) |
WoPlugJP | Plug Mini (JP) |
WoMeter | Meter |
WoMeterPlus | Meter Plus |
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
detectionState | String | the motion state of the device, "DETECTED" stands for motion is detected; "NOT_DETECTED" stands for motion has not been detected for some time |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoPresence",
"deviceMac": DEVICE_MAC_ADDR,
"detectionState": "NOT_DETECTED",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
detectionState | String | the motion state of the device, "DETECTED" stands for motion is detected; "NOT_DETECTED" stands for motion has not been detected for some time |
doorMode | String | when the enter or exit mode gets triggered, "IN_DOOR" or "OUT_DOOR" is returned |
brightness | String | the level of brightness, can be "bright" or "dim" |
openState | String | the state of the contact sensor, can be "open" or "close" or "timeOutNotClose" |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoContact",
"deviceMac": DEVICE_MAC_ADDR,
"detectionState": "NOT_DETECTED",
"doorMode":"OUT_DOOR",
"brightness": "dim",
"openState": "open",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
temperature | Float | the current temperature reading |
scale | String | the current temperature unit being used |
humidity | Integer | the current humidity reading in percentage |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoMeter",
"deviceMac": DEVICE_MAC_ADDR,
"temperature": 22.5,
"scale": "CELSIUS",
"humidity": 31,
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
temperature | Float | the current temperature reading |
scale | String | the current temperature unit being used |
humidity | Integer | the current humidity reading in percentage |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoMeter",
"deviceMac": DEVICE_MAC_ADDR,
"temperature": 22.5,
"scale": "CELSIUS",
"humidity": 31,
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
lockState | String | the state of the device, "LOCKED" stands for the motor is rotated to locking position; "UNLOCKED" stands for the motor is rotated to unlocking position; "JAMMED" stands for the motor is jammed while rotating |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoLock",
"deviceMac": DEVICE_MAC_ADDR,
"lockState": "LOCKED",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
detectionState | String | the detection state of the device, "DETECTED" stands for motion is detected |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoCamera",
"deviceMac": DEVICE_MAC_ADDR,
"detectionState": "DETECTED",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
detectionState | String | the detection state of the device, "DETECTED" stands for motion is detected |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoPanTiltCam",
"deviceMac": DEVICE_MAC_ADDR,
"detectionState": "DETECTED",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
powerState | String | the current power state of the device, "ON" or "OFF" |
brightness | Integer | the brightness value, range from 1 to 100 |
color | String | the color value, in the format of RGB value, "255:255:255" |
colorTemperature | Integer | the color temperature value, range from 2700 to 6500 |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoBulb",
"deviceMac": DEVICE_MAC_ADDR,
"powerState": "ON",
"brightness": 10,
"color":"255:245:235",
"colorTemperature":3500,
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
powerState | String | the current power state of the device, "ON" or "OFF" |
brightness | Integer | the brightness value, range from 1 to 100 |
color | String | the color value, in the format of RGB value, "255:255:255" |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoStrip",
"deviceMac": DEVICE_MAC_ADDR,
"powerState": "ON",
"brightness": 10,
"color": "255:245:235",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
powerState | String | the current power state of the device, "ON" or "OFF" |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoPlugUS",
"deviceMac": DEVICE_MAC_ADDR,
"powerState": "ON",
"timeOfSample": 123456789
}
}
Key Name | Value Type | Description |
---|---|---|
eventType | String | the type of events |
eventVersion | String | the current event version |
context | Object | the detail info of the event |
deviceType | String | the type of the device |
deviceMac | String | the MAC address of the device |
powerState | String | the current power state of the device, "ON" or "OFF" |
timeOfSample | Long | the time stamp when the event is sent |
{
"eventType": "changeReport",
"eventVersion": "1",
"context": {
"deviceType": "WoPlugJP",
"deviceMac": DEVICE_MAC_ADDR,
"powerState": "ON",
"timeOfSample": 123456789
}
}