v1

latestOpenAPI 3.0.3raw.githubusercontent.com2024-10-2916802.4 MB
🔐 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

messagestring
statusCodenumber
successboolean

Example response

{
  "data": {
    "isEmailVerified": true
  },
  "message": "Email is verified",
  "statusCode": 200,
  "success": true
}