1.
This interface can be used for obtaining the screen list.
Request
Number of records per page
Screen status 0: Unknown, 1: Normal, 2: Offline, 3: Risky, 4: Faulty
Random string (8-64 characters, only numbers or letters)
The current UTC timestamp
Request samples
curl --location --request GET 'https://open-us.vnnox.com/v2/device-status-monitor/screen/list?pageNumber=0&pageSize=100&status=1&name&address' \
--header 'AppKey;' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;'
Responses
application/json Unique identifier of the screen
Does the screen have a camera? 0: No, 1: Yes.
Ambient brightness -1 means the brightness is not obtained.
{
"total": 100,
"items": [
{
"sid": 1,
"name": "TU20",
"mac": "00FF5C24E412",
"sn": "12C34A567890388",
"address": "New York",
"longitude": -74.00109387752458,
"latitude": 40.73674273658566,
"status": 1,
"camera": 1,
"brightness": 84,
"envBrightness": 10000
}
]
}
Modified at 2025-02-20 01:40:58