/*User related APIs*/
        public UserEntities getUsers()
        {
            IRestResponse response = client.get("users", new Dictionary <string, string>());

            return(client.isStatusCodeOK(response) ? deserial.Deserialize <UserEntities>(response) : null);
        }