Sync Request
### Used with WebSocket protocol. Returns all data associated with the user.
This endpoint is essential for efficient use of the WebSocket API.
```js
const URL = 'wss://live.tradovateapi.com/v1/websocket'
const myWebSocket = new WebSocket(URL)
//authorize websocket with your access token
myWebSocket.onopen = function() {
myWebSocket.send(`authorize\n0\n\n${accessToken}`)
}
const requestBody = {
users: [12345]
}
myWebSocket.send(`user/syncrequest\n1\n\n${JSON.stringify(requestBody)}`)
//starts a subscription to real-time user data.
```

