The body of POST /auth/reset-password.

interface RESTPostAPIAuthResetPasswordConfirmBody {
    code: string;
    email: string;
    new_password: string;
}

Properties

code: string

The password reset confirmation code.

email: string

The user's email.

new_password: string

The new user's password.