- ZenSpace Integration Documentation
- ZenSpace General Architecture - Overview
- ZenSpace API V1.0
- Device Management
- Bookings
- Meeting Space
- Device Management
- ZenSpace API V2.0
- ZenSpace Supported Devices
Get Device Instruction
Developing
POST
/devices/{meeting_space_id}/device-instruction
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:
light
Example
{"device_type": "fan"}
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//device-instruction' \
--header 'X-API-Key: your-api-key' \
--header 'Content-Type: application/json' \
--data-raw '{"device_type": "fan"}'
Responses
🟢200OK
application/json
Body
response
object
optional
device_instruction
object
optional
Example:
{"device":"fan","instructions":"device instructions"}
Example
{
"response": {
"device_instruction": {
"device": "fan",
"instructions": "device instructions"
}
}
}
🟠404Record Not Found
🔴500Server Error
Modified at 2025-01-29 09:56:56