Documentation Index
Fetch the complete documentation index at: https://docs.tktchurch.com/llms.txt
Use this file to discover all available pages before exploring further.
This is a public endpoint that does not require authentication.
Request Body
The email address of the user who needs a new verification link. Must be a valid email format.
Response
A successful request returns HTTP 200 OK status. A new verification email will be sent to the provided email address if:
- The user exists in the system
- Their email is not already verified
Error Responses
Error details when the request fails
Error message explaining why the request failed
Common error cases:
- 400 Bad Request: Invalid email format
- 400 Bad Request: Email is already verified
- 404 Not Found: User not found
curl -X POST "https://api.tktchurch.com/v1/auth/resend-verification" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]"
}'
{
"status": 200,
"message": "Verification email sent successfully"
}