Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am working on a password reset application, which works on Google domains. I used .net provisioning api. I googled and tried everything but didn't find any way to change password.
Posted
Comments
Neven Iliev 10-Apr-13 8:55am    
If it's not outlined in the API documentation then it's not possible.

1 solution

I found a very easy way

C#
AppsService service = new AppsService("domain", "adminusername", "adminpassword");
  UserEntry user = service.RetrieveUser("viresh1");
  user.Login.Password = "newpassword";
  service.UpdateUser(user);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900