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. The verification token in the URL is sufficient for verification.
Query Parameters
The verification token received in the email. This is a JWT token containing the user ID.
Response
A successful request returns HTTP 200 OK status, indicating that the email has been verified.
The user’s emailVerified status will be updated to true in the database.
Error Responses
Error details when the request fails Error message explaining why the request failed
Common error cases:
400 Bad Request: Missing verification token
401 Unauthorized: Invalid or expired token
404 Not Found: User not found
cURL
JavaScript
Swift
Kotlin
React Native
curl -X GET "https://api.tktchurch.com/v1/auth/verify-email?token=eyJhbGciOiJIUzI1NiIs..."
200 Success
400 Missing Token
401 Invalid Token
404 User Not Found
{
"status" : 200 ,
"message" : "Email verified successfully"
}