Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Request password reset emails, reset passwords via OTP, and change current passwords.
POST /api/v2/auth/forgot-password
email
string
{ "email": "user@example.com" }
{ "success": true, "message": "Password reset code sent to your email" }
POST /api/v2/auth/reset-password
otpCode
newPassword
{ "email": "user@example.com", "otpCode": "928371", "newPassword": "BrandNewPassword2026!" }
{ "success": true, "message": "Password reset successfully. Please log in with your new password." }
POST /api/v2/auth/change-password
Authorization: Bearer <jwt_access_token>
currentPassword
{ "currentPassword": "OldPassword123!", "newPassword": "NewStrongPassword2026!" }
{ "success": true, "message": "Password updated successfully" }