Web Sockets Overview

You can also interface with our cloud servers via Web Sockets. All previous conventions about messaging with the Plegma API also stand here. The wrapper class that carries all Websocket messages is the following:

public class WebSocketMsg
    {
        public eWSAPIType Id;
        public string Subid;
        
        public eMsgFlags Flags;
        public int SyncId;
        public string Payload;
    }