User (Reset Password)
/api/v1/users/reset_password/
Reset token is generated and sent to the user using the password reset request endpoint.
Endpoint
/api/v1/users/reset_password/
Headers
{
"Content-Type": "application/json"
}
Body
{
"email": "<str:email>",
"token": "<str:token>",
"new_password": "<str:new_password>"
}
Response
{
"status": "success",
"message": "Password has been reset successfully."
}