NovaCloud-EN
  1. Logs
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
        GET
    • 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. Logs

Obtaining Control Command Execution Logs

US
https://open-us.vnnox.com
US
https://open-us.vnnox.com
GET
/v2/logs/remote-control
TIP
1.
This interface is used for obtaining the command execution history of a player.
2.
Sub-accounts can only manage data within their specific workgroup and its sub-workgroups.
3.
Advanced interface.

Request

Body Params application/json
playerId
string 
required
Player IDs to be handled. Only a single player can be queried.
count
integer 
required
Items of each type of historical data that can be read each time, 20 by default, range: 1~100
start
integer 
required
From which item to start reading each type of historical data, 0 by default
taskType
integer 
required
1: Restart, 2: Screen status control, 4: Video source switching, 3: Synchronous playback, 5: Upgrade, 6: Screenshot, 7: Time zone, 8: Power control, 9: Volume adjustment 10: Brightness adjustment
Example
{
   "playerId": "df6c02352e4fd3cd5bc664fcdaef29c9",
   "count": 20,
   "start": 0,
   "taskType": 1
}

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/logs/remote-control' \
--header 'Content-Type: application/json' \
--data-raw '{
   "playerId": "df6c02352e4fd3cd5bc664fcdaef29c9",
   "count": 20,
   "start": 0,
   "taskType": 1
}'

Responses

🟢200OK
application/json
Body
total
integer 
required
Total number of items of history
rows
array [object {4}] 
required
Historical array
status
string 
optional
Command execution result, 0: Unknown 1: Successful 2: Failed
executeTime
string 
optional
Command execution time
type
string 
optional
Command type reboot-Restart、openScreen-Turn on screen、closeScreen-Turn off screen、openSyncPlay-Turn on synchronous playback、closeSynsPlay-Turn off synchronous playback、internal-Internal video source、HDMI-External video source、osUpdate-OS update、appUpdate-APP update、firmwareUpdate-Firmware update、screenShot-Screenshot、getTimezone-Get time zone、setTimezone-Set time zone、setVolume-Set time zone、setBrightness-Set brightness
ratio
integer 
optional
Specified volume or brightness. This is not available for other types of commands.
Example
{
    "total": 3,
    "rows": [
        {
            "status": 1,
            "executeTime": "2024-07-02 04:55:48",
            "type": "openScreen"
        },
        {
            "status": 1,
            "executeTime": "2024-07-02 04:55:33",
            "type": "openScreen"
        },
        {
            "status": 1,
            "executeTime": "2024-07-02 04:55:16",
            "type": "openScreen"
        }
    ]
}
Previous
Searching for the Play Log Overview of a Single Player
Next
Video Source Change Notifications
Built with