How can we update the access token in the WebSocket session?
Based on the documentation, we believe that the latest access token can be updated in the WebSocket session by using the following request format:
{
"Domain": "Login",
"ID": 1,
"Key": {
"Elements": {
"ApplicationId": "555",
"AuthenticationToken": "aBcDeFgHiJkLmNoPqRsTuVwXyZ",
"Position": "127.0.0.1"
},
"NameType": "AuthnToken"
}
}
Is it correct to assume that this request will update the access token for the WebSocket session?
Also, if the above request is made while the WebSocket session is ongoing, will the session continue without interruption?