EWebAccountServiceGeneratePasswordResetToken Method

Note: This API is now obsolete.
Requests a password reset for a given user, generating a unique identifier that can be sent to the user via some secure, identifying medium such as email

Definition

Namespace: Ignition.Crm.AccountManagement
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
[ObsoleteAttribute("Ignition no longer manually tracks password reset tokens. If you would like to use them in your application, you may generate and store them yourself. (5.4)", 
	true)]
public string GeneratePasswordResetToken(
	ICustomer user,
	int tokenExpirationInMinutesFromNow
)

Parameters

user  ICustomer
The user for which the request should be generated
tokenExpirationInMinutesFromNow  Int32
When the reset request should expire in minutes from now

Return Value

String
A unique identifier that can be retrieved via RetrievePasswordResetRequest

See Also