- API Access Guide
- Common HTTP Status Codes
- VNNOX
- Player
- Solutions
- Real-Time Control
- Scheduled Control
- Logs
- Notifications
- VNNOXCare
- Notes
- Device Status Monitoring
- Brightness Log
- Others
- Third-Party System Authorization
Obtaining Control Command Execution Logs
US
https://open-us.vnnox.com
US
https://open-us.vnnox.com
GET
/v2/logs/remote-control
TIP
1.
2.
3.
Request
Body Params application/json
playerId
string
required
count
integer
required
start
integer
required
taskType
integer
required
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
rows
array [object {4}]
required
status
string
optional
executeTime
string
optional
type
string
optional
ratio
integer
optional
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"
}
]
}