MonoCloud Management SDK
    Preparing search index...

    Interface ResetPasswordResponse

    Reset Password Response: Returns the delivery status of the password reset email.

    ResetPasswordResponse

    interface ResetPasswordResponse {
        email_sent: boolean;
        expires_at: number;
        link: string;
    }
    Index

    Properties

    email_sent: boolean

    Indicates whether the password reset email was sent to the user.

    ResetPasswordResponse

    expires_at: number

    Specifies the expiry time for the password reset link (in Epoch).

    ResetPasswordResponse

    link: string

    The generated password reset link that can be used to complete the reset flow.

    ResetPasswordResponse