Forgot Password
Initiate password recovery process for a merchant account.
Parameters
- email: Email address of the merchant account
Request
GET /merchant/forgot-password?email={email}
Headers
| Key | Value | Description |
|---|---|---|
| Content-Type | application/json | Request content type |
Responses
200 OK
{
"status": true,
"data": {
"message": "Password reset instructions sent to email"
},
"error": [],
"message": "success!"
}
404 Not Found
{
"status": false,
"data": {},
"error": ["Email not found"],
"message": "Account not found"
}