Forgot Password
ForgotPasswordRequest
Response
const response = await fetch('/v2/auth/forgot-password', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "description": "text", "status": "text", "data": { "email": "text", "email_found": false, "sms_id": "text", "user_id": "text" } }