NovaCloud-EN
  1. Screen
NovaCloud-EN
  • API Access Guide
  • Common HTTP Status Codes
  • VNNOX
    • Player
      • Player Management
        • Obtain player list
      • Obtaining Player Status
        • Obtaining Basic Player Information
        • Obtaining Player Configuration Status
    • Solutions
      • Emergency Insertion
        • Single-Page Emergency Insertion Solutions
        • Canceling Emergency Insertion Solutions
      • Program widget examples
        • Hand-drawn clock widget
        • Weather widget
        • Environmental Monitoring widget
      • Common Solutions
      • Offline Export
      • Over-specification Detection Switching
      • Program Over-specification Detection
    • Real-Time Control
      • NTP Time Synchronization
      • Synchronous playback
      • Brightness Adjustment
      • Screenshots
      • Volume Adjustment
      • Video Source Switching
      • Screen Status
      • Restart Players
      • Screen Power
    • Scheduled Control
      • Scheduled Screen Status
      • Scheduled Restart Players
      • Scheduled Volume Adjustment
      • Scheduled Brightness Adjustment
      • Scheduled Video Source Switching
    • Logs
      • Play Logs
        • Batch Searching for Play Log Overviews
        • Batch Searching for Play Log Details
        • Searching for the Play Log Detail of a Single Player
        • Searching for the Play Log Overview of a Single Player
      • Obtaining Control Command Execution Logs
    • Notifications
      • Video Source Change Notifications
      • Solution Change Notifications
  • VNNOXCare
    • Notes
    • Device Status Monitoring
      • Receiving Card
        • Topology Information
        • Basic Information
        • Monitoring Information
        • Alarm Information
      • Screen
        • Screen list
          GET
        • Screen detail
          POST
        • Monitoring Information
          GET
      • Master Controller
        • Basic Information
        • Alarm Information
        • Operating Parameters Information
      • Smart Module
        • Monitoring Information
        • Alarm Infomation
      • Input Source
        • Monitor Infomation
      • Module/Cabinet
        • Monitoring Information
      • Monitoring Card
        • Monitoring Information
      • Camera
        • Camera configuration
        • The camera monitors the aggregated information
    • Brightness Log
      • Brightness History
  • Others
    • Third-Party System Authorization
      • Obtaining User List
      • Obtaining Login URL
  1. Screen

Screen list

US
https://open-us.vnnox.com
US
https://open-us.vnnox.com
GET
/v2/device-status-monitor/screen/list
TIP
1.
This interface can be used for obtaining the screen list.
2.
Advanced interface.

Request

Query Params
pageNumber
integer 
required
Page number
>= 0
Example:
0
pageSize
integer 
required
Number of records per page
>= 1<= 1000
Example:
1000
status
integer 
optional
Screen status 1: Normal, 2: Offline, 3: Risky, 4: Faulty
Example:
1
name
string 
optional
Screen name
address
string 
optional
Screen location

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 GET 'https://open-us.vnnox.com/v2/device-status-monitor/screen/list?pageNumber=0&pageSize=1000&status=1&name&address'

Responses

🟢200成功
application/json
Body
total
integer 
required
Total number of records
items
array [object {11}] 
required
sid
integer 
required
Screen ID
name
string 
required
Screen name
mac
string 
required
Screen MAC address
sn
string 
required
Unique identifier of the screen
address
string 
required
Screen location
longitude
number 
required
Screen longitude
latitude
number 
required
Screen latitude
status
integer 
required
Screen status
camera
integer 
required
Does the screen have a camera? 0: No, 1: Yes.
brightness
integer 
required
Screen brightness
envBrightness
integer 
required
Ambient brightness -1 means the brightness is not obtained.
Example
{
	"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
		}
	]
}
Previous
Alarm Information
Next
Screen detail
Built with