NovaCloud-EN
  1. Obtaining Player Status
NovaCloud-EN
  • API Access Guide
  • Common HTTP Status Codes
  • VNNOX
    • Player
      • Player Management
        • Obtain player list
      • Obtaining Player Status
        • Obtaining Basic Player Information
          POST
        • Obtaining Player Configuration Status
          POST
    • 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
        • 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. Obtaining Player Status

Obtaining Basic Player Information

US
https://open-us.vnnox.com
US
https://open-us.vnnox.com
POST
/v2/player/current/online-status
TIP
1.
This interface is used for obtaining the current player status (online/offline), player type, screen resolution, system version, IP address, etc.
2.
Sub-accounts can only manage data within their specific workgroup and its sub-workgroups.
3.
Basic 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.
playerSns
array[string]
required
A maximum of 100 players can be processed at the same time. With playerIds, this parameter is mandatory
Example
{
    "playerIds": [
        "8208967d40e9980bab6d12367dc88e0b"
    ]
}
or
{
    "playerSns": [
        "2KKA02B12N0A10000151"
    ]
}

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/current/online-status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "playerIds": [
        "8208967d40e9980bab6d12367dc88e0b"
    ]
}
or
{
    "playerSns": [
        "2KKA02B12N0A10000151"
    ]
}'

Responses

🟢200OK
application/json
Body
array of:
playerId
string 
optional
Player ID
sn
string 
optional
Unique ID of a player. Null denotes that the player is not bound.
onlineStatus
integer 
optional
Player status, 0-Offline, 1-Online.
lastOnlineTime
string 
optional
Last heartbeat time of the player
Example
[
    {
        "playerId": "130c0a9f4cd9f2c9d421a97b0293e5d6",
        "sn": "BZSA07216J0550000373",
        "onlineStatus": 1,
        "lastOnlineTime": "2020-09-09 14:48:50"
    }
]
Previous
Obtain player list
Next
Obtaining Player Configuration Status
Built with