Ejemplo n.º 1
0
        public string CreateOffice365User(string email, string displayName, string password, string token)
        {
            var result = Restful.CreateUserOffice365(email, displayName, password, token);

            return(result.Error == null ? "ok" : "Your email already exists");
        }