- ZenSpace Integration Documentation
- ZenSpace General Architecture - Overview
- ZenSpace API V1.0
- ZenSpace API V2.0
- Device Management
- Bookings
- Meeting Space
- Device Management
- ZenSpace Supported Devices
Get Device Status
Developing
POST
/devices/{meeting_space_id}/status
Device Management
Request
Path Params
meeting_space_id
string
required
Header Params
X-API-Key
string
required
Example:
your-api-key
Body Params application/json
device_type
string
required
Example:
lock
Example
{"device_type": "lock"}
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 '/devices//status' \
--header 'X-API-Key: your-api-key' \
--header 'Content-Type: application/json' \
--data-raw '{"device_type": "lock"}'
Responses
🟢200OK
application/json
Body
response
object
optional
Example:
{"device":"lock","value":"open||closed","status":"online||offline"}
device
string
optional
Example:
lock
value
string
optional
Examples:
openclosed
status
string
optional
Examples:
onlineoffline
Example
{
"response": {
"device": "lock",
"value": "open||closed",
"status": "online||offline"
}
}
🟠404Record Not Found
🔴500Server Error
Modified at 2025-05-09 12:02:07