NovaCloud-EN
  1. Real-Time Control
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
        POST
      • Synchronous playback
        POST
      • Brightness Adjustment
        POST
      • Screenshots
        POST
      • Volume Adjustment
        POST
      • Video Source Switching
        POST
      • Screen Status
        POST
      • Restart Players
        POST
      • Screen Power
        POST
    • 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
        • Screen detail
        • Monitoring Information
      • 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. Real-Time Control

NTP Time Synchronization

US
https://open-us.vnnox.com
US
https://open-us.vnnox.com
POST
/v2/player/real-time-control/ntp
TIP
1.
This interface is used for NTP time synchronization settings.
2.
If you set RF time synchronization for a player and set the player as a slave device, setting NTP synchronization for the player will not be available. You need to turn off RF time synchronization and then set NTP time synchronization.
3.
Sub-accounts can only manage data within their specific workgroup and its sub-workgroups.
4.
Advanced interface.

Request

Body Params application/json
playerIds
array[string]
required
A collection of player IDs to be handled. At most 100 player IDs can be handled simultaneously.
server
string 
required
The node address for time synchronization is required. The available addresses include China: ntp1.aliyun.com and US: us.ntp.org.cn.
enable
boolean 
required
Enable NTP time synchronization, true: Yes, false: No.
Example
 {
     "playerIds": [
        "df6c02352e4fd3cd5bc664fcdaef29c9"
    ],
    "server" : "ntp1.aliyun.com",
    "enable" : true
}

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/player/real-time-control/ntp' \
--header 'Content-Type: application/json' \
--data-raw '{
     "playerIds": [
        "df6c02352e4fd3cd5bc664fcdaef29c9"
    ],
    "server" : "ntp1.aliyun.com",
    "enable" : true
}'

Responses

🟢200OK
application/json
Body
success
array[string]
required
A collection of player IDs that are successfully sent.
fail
array[string]
required
A collection of player IDs that are not sent successfully.
Example
{
    "success": [
        "df6c02352e4fd3cd5bc664fcdaef29c9"
    ],
    "fail": []
}
Previous
Program Over-specification Detection
Next
Synchronous playback
Built with