User Management
Resend Verification Email

Resend Verification Email API

Welcome to the documentation for the Resend Verification Email API. This API helps you resend a verification email for user authentication.

Base URL

{baseURL}/v1/users/resend-verification-email | POST

Authorization

Include the following Authorization header in your HTTP requests using a Bearer token:

Authorization: Bearer YOUR_ACCESS_TOKEN

Request Payload

FieldTypeSourceRequiredDescription
emailstringbody✅ YesUser's email address

Sample Request

curl -X POST {baseURL}/v1/users/resend-verification-email \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
  "email": "[email protected]",
    "password": "cmTnHJ$:"
  }'

Sample 200 Response

{
  "message": "Email sent successfully",
  "success": true
}