1.
This interface is used for adjusting the screen brightness.
2.
Sub-accounts can only manage data within their specific workgroup and its sub-workgroups.
Request
Random string (8-64 characters, only numbers or letters)
The current UTC timestamp
Body Params application/json
A collection of player IDs to be handled. At most 100 player IDs can be handled simultaneously.
Brightness percentage, range: 0~100.
{
"playerIds": [
"4PBXun3mQoZGnKdLKoDtBA==",
"4PBXun32QoZGnKdLKoDtBA=="
],
"value": 50
}
Request samples
curl --location --request POST 'https://open-us.vnnox.com/v2/player/real-time-control/brightness' \
--header 'AppKey;' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"playerIds":[
"4PBXun3mQoZGnKdLKoDtBA==",
"4PBXun32QoZGnKdLKoDtBA=="
],
"value":50
}'
Responses
application/json A collection of player IDs that are successfully sent.
A collection of player IDs that are not sent successfully.
{
"success": [
"4PBXun3mQoZGnKdLKoDtBA==",
"4PBXun32QoZGnKdLKoDtBA=="
],
"fail": [
"4PBXun3mQoZGnKdLKoDtBA==",
"4PBXun32QoZGnKdLKoDtBA=="
]
}
Modified at 2024-08-07 01:35:37