ZendeskApi_v2.Requests.Users.SetUsersPassword C# (CSharp) Method

SetUsersPassword() public method

public SetUsersPassword ( long userId, string newPassword ) : bool
userId long
newPassword string
return bool
        public bool SetUsersPassword(long userId, string newPassword)
        {
            var body = new { password = newPassword };
            return GenericBoolPost(string.Format("users/{0}/password.json", userId), body);
        }