1.
This interface is used for controlling the screen status (black screen/normal).
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.
Status,OPEN-Normal,CLOSE-Black screen.
{
"playerIds": [
"553cbfe2ff4ad2e0d6bd89bb2c4e85e2"
],
"status": "OPEN"
}
Request samples
curl --location --request POST 'https://open-us.vnnox.com/v2/player/real-time-control/screen-status' \
--header 'AppKey;' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"playerIds": [
"553cbfe2ff4ad2e0d6bd89bb2c4e85e2"
],
"status": "OPEN"
}'
Responses
application/json A collection of player IDs that are successfully sent.
A collection of player IDs that are not sent successfully.
{
"success": [
"553cbfe2ff4ad2e0d6bd89bb2c4e85e2"
],
"fail": []
}
Modified at 2024-08-07 01:35:37