- API Access Guide
- Common HTTP Status Codes
- VNNOX
- Player
- Solutions
- Real-Time Control
- Scheduled Control
- Logs
- Notifications
- VNNOXCare
- Notes
- Device Status Monitoring
- Receiving Card
- Screen
- Master Controller
- Smart Module
- Input Source
- Module/Cabinet
- Monitoring Card
- Camera
- Brightness Log
- Others
- Third-Party System Authorization
The camera monitors the aggregated information
Developing
US
https://open-us.vnnox.com
US
https://open-us.vnnox.com
POST
/v2/device-status-monitor/camera
TIP
1.
2.
Request
Body Params application/json
sidList
array[integer]
required
thumbnailWidth
integer
required
thumbnailHeight
integer
required
Example
{
"sidList": [
0
],
"thumbnailWidth": 0,
"thumbnailHeight": 0
}
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 'https://open-us.vnnox.com/v2/device-status-monitor/camera' \
--header 'Content-Type: application/json' \
--data-raw '{
"sidList": [
0
],
"thumbnailWidth": 0,
"thumbnailHeight": 0
}'
Responses
🟢200成功
application/json
Body
noCameraSidList
array[string]
required
value
array [object {4}]
required
sid
integer
optional
url
array[string]
optional
thumbnailUrl
array[string]
optional
camera
array [object {5}]
optional
Example
{
"noCameraSidList": [
"string"
],
"value": [
{
"sid": 0,
"url": [
"string"
],
"thumbnailUrl": [
"string"
],
"camera": [
{
"id": 0,
"name": "string",
"enable": 0,
"folderExist": 0,
"setting": 0
}
]
}
]
}