This endpoint initiates the process of resetting a user's password. It sends an email containing a password reset link to the email address associated with the account. The link typically includes a token that is required to verify the user's identity and allow them to set a new password.
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST 'https://api-demo.hybridmlm.io/rest/public_api' \
--form'purpose="forgotPasswordMail"' \
--form'params[email]="admin@email.com"'
Response Response Example
200 - Success
{"status":true,"data":{},"message":"Mail Sent Successfully"}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.