Table of Contents
This API endpoint allows users to reset their password if they have forgotten it.
Endpoint URL #
POST https://admin.voomerr.com/api/forgot_password.php
Parameters #
The following parameters are required to successfully make a request to the API:
| Parameter | Type | Required | Description |
|---|---|---|---|
| String | Yes | The email address associated with the user’s Voomerr account. |
Response #
The API will return a JSON object containing the following fields:
| Field | Type | Description |
|---|---|---|
| success | Bool | Indicates whether the password reset request was successful. |
| error_code | Int | The error code, if any. |
| error_msg | String | A message describing the error, if any. |
Example Request #
bash
POST https://admin.voomerr.com/api/forgot_password.php
Content-Type: application/json
{
"email": "john.doe@example.com"
}
Example Response #
bash
HTTP/1.1 200 OK
Content-Type: application/json
{
"success": true
}
