1.
This interface is used for restarting players.
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.
{
"playerIds": [
"df6c02352e4fd3cd5bc664fcdaef29c9"
]
}
Request samples
curl --location --request POST 'https://open-us.vnnox.com/v2/player/real-time-control/reboot' \
--header 'AppKey;' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"playerIds": [
"df6c02352e4fd3cd5bc664fcdaef29c9"
]
}'
Responses
application/json A collection of player IDs that are successfully sent.
A collection of player IDs that are not sent successfully.
{
"success": [
"df6c02352e4fd3cd5bc664fcdaef29c9"
],
"fail": []
}
Modified at 2024-08-07 01:35:37