Reset password confirmation

Change a user password if the reset password token is valid for that user.

Using the SDK

from cakemail.models import ResetPasswordConfirm

api.user.reset_password_confirm(
    ResetPasswordConfirm(
        token='<confirmation token>',
        password='<new user password>'
    )
)
<?php

$api->user->resetPasswordConfirm([
    'reset_password_confirm' => new \Cakemail\Lib\Model\ResetPasswordConfirm([
        'token' => '<confirmation token>',
        'password' => '<new user password>'
    ])
]);
Language
Click Try It! to start a request and see the response here!