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 | POSTAuthorization
Include the following Authorization header in your HTTP requests using a Bearer token:
Authorization: Bearer YOUR_ACCESS_TOKENRequest Payload
| Field | Type | Source | Required | Description |
|---|---|---|---|---|
| string | body | ✅ Yes | User'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
}