Complete Dyzo API Documentation - Project Management, Team Collaboration & Time Tracking Platform
Capabilities and features
Reset forgotten passwords or change passwords for logged-in users.
/reset/link/Send password reset link to user's email. User clicks link to reset password.
1{2 "email": "[email protected]"3}/reset/verify/Reset password using the token received in reset email.
1{2 "token": "reset_token_from_email",3 "new_password": "NewSecurePass123!",4 "confirm_password": "NewSecurePass123!"5}/employee/password/{employee_id}/Change password for a logged-in employee. Requires current password for verification.
1{2 "current_password": "OldPass123!",3 "new_password": "NewPass456!",4 "confirm_password": "NewPass456!"5}