🔐 Authentication
Verify user email
The API endpoint is used to verify a user's email by accessing the verification token (verificationToken) included in the path variable.
When the user clicks on the email verification link provided to them, this API is invoked to validate their email address.
By including the verification token in the URL path, the endpoint confirms the authenticity of the token and marks the user's email as verified.
get/users/verify-email/{verificationToken}
Response
Verify user email
Example response
{
"data": {
"isEmailVerified": true
},
"message": "Email is verified",
"statusCode": 200,
"success": true
}