HYBRID MLM SOFTWARE
  1. Authorization
HYBRID MLM SOFTWARE
  • Introduction
  • Authorization
    • Login
      • login
    • Forget Password
      POST
  • Register
    • Fetch Country List
      POST
    • Fetch State List
      POST
    • Username Existence Checker
      POST
    • Email Existence Checker
      POST
    • Sponsor Verification
      POST
    • User Registration
      POST
  • Profile
    • Retrieves User Profile Information
      POST
    • Modify User Profile Information
      POST
  • Dashboard
    • Fetch Dashboard Data
      POST
  • Payout
    • Payout Pin
      • Check Payout Pin Status
      • Initiate User Payout Pin Creation
      • Update User Payout Pin
      • Manage Forgotten Payout Pin
    • Payout Accounts
      • Retrieve User Payout Accounts List
      • Retrieve Account Fields Data
      • Register Payout Account For User
      • Delete User Payout Account
    • New payout Request
      • Retrieves Payout Wallets List
      • Initiate New Payout Request
    • Retrieve Payout Gateways
      POST
    • Revoke User Payout Request
      POST
    • Check Payout Status
      POST
    • Retrieve Payout History Data
      POST
  • Wallet
    • Transaction Password
      • Check Transaction Password Status
      • Initiate User Transaction Password
      • Update Transaction Password For User
      • Manage Forgotten Transaction Password
    • Retrieve List Of Wallets
      POST
    • Fetch Wallet Balance
      POST
    • Initiate Funds Transfer
      POST
    • Retrieve Transaction Operations
      POST
    • Retrieve User Transactions
      POST
  • News
    • Fetch All News
    • Fetch Single News
  • Reports
    • Earning Report
      • Fetch Earning Report Filter Details
      • Show Filtered Earning Report
    • Refferal List
      • Fetch User Referral List
    • Downline List
      • Fetech User Downline List
  • Mail
    • Compose Mail
    • Reply Mail
    • Retrieve Inbox Mails
    • Retrieve Send Mails
    • Star Mail
    • UnStar Mail
    • Retrieve Starred Mail
    • Retrieve Trashed Mail
    • Delete Mail
  1. Authorization

Forget Password

Developing
POST
https://api-demo.hybridmlm.io/rest/public_api
forgotPasswordMail
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.
Example:
Authorization: Bearer ********************
Body Params multipart/form-data
purpose
string 
required
Example:
forgotPasswordMail
params[email]
string 
required
Example:
admin@email.com

Responses

🟢200Success
application/json
Body
status
boolean 
required
data
object 
required
message
string 
required
🟠422Parameter Error
Modified at 2025-03-26 10:58:54
Previous
login
Next
Fetch Country List
Built with