Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId account login name
authServerPartnerLoginPasswordstringSurePassId account login key
pwstringUser account password
ridstringSystem generated value, contained in reset password url
midstringSystem generated value, contained in reset password url
fromEmailNamestringName for sender of password recovery email
fromEmailAddressstringEmail address for sender of password recovery email
emailSubjectstringSubject of password recovery email
emailBodystringBody of password recovery email
htmlbooleanBoolean indicating if email is HTML formatted

...

Code Block
languagec#
titleSample WCF C# Method
AuthServerResponseresp = PasswordRecoveryChangePassword("accountLogin",
            "accountKey",
			"tinyD4nc3r",
	        "{rid}",
			"{mid}",
            "Mandy",
            "mandy@example.com",
            "Recover Password", 
			"Let us help you recover your password.",
            false);

...