Resend Verification Code

The Voomerr Resend Verification Code allows users to resend their verification code using their email address. This accepts an email address and sends a new verification code to the specified email address.

Endpoint #

The Voomerr Resend Verification Code API endpoint is POST https://admin.voomerr.com/api/resend_verification.php.

Request Parameters #

The following parameters are required to resend a verification code:

Parameter Type Required Description
email string Yes The email address associated with the user account for which the verification code needs to be resent.
action string Yes The action to perform on the verification code. The value should be set to ‘resend’.

Example Request #

http
POST https://admin.voomerr.com/api/resend_verification.php

{
"email": "john.doe@example.com",
"action": "resend"
}

Response #

The response from the API will contain a JSON object with the following fields:

Field Type Description
success boolean Whether the request was successful or not.
message string A message describing the result of the request.

If the request is successful, the ‘success’ field will be ‘true’, and the ‘message’ field will contain a success message indicating that the verification code has been resent to the email address. If the request fails, the ‘success’ field will be ‘false’, and the ‘message’ field will contain an error message indicating that the verification code resend process has failed.

Example Response #

json
{
"success": true,
"message": "Verification code has been resent to your email address."
}

Powered by BetterDocs