Forget Password
DevelopingPOST
https://api-demo.hybridmlmsoftware.com/rest/public_apiThis 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
Body Params multipart/form-data
purpose
string
required
Example:
forgotPasswordMail
params[email]
string
required
Example:
admin@email.com
Request samples
Responses
Parameter Error(422)
Success(200)
HTTP Code: 422
Content Type : JSONapplication/json
Data Schema
status
boolean
required
data
array[string]
required
message
object
required
email
array[string]
required
ExampleValidation Error
{
"status": false,
"data": [],
"message": {
"email": [
"The selected email is invalid."
]
}
}
Last modified: 7 months ago