Skip to main content
GET
/
:projectId
/
api
/
v7
/
auth
/
verify-email-link
Verify Email Link
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/auth/verify-email-link
Verifies a user’s email address when they click the link from a verification email sent with mode: "link". On success, isVerified is set to true and the token is invalidated. This endpoint is called automatically by the browser — you do not call it directly from your app. It is the target URL embedded in the verification button in the email.

Query Parameters

token
string
required
The verification token embedded in the link by the server.
redirect
string
The URL to redirect the user to after verification. This is set automatically by the server based on the redirectUrl you passed to Send Verification Email.On success: redirects to {redirectUrl}?verified=true On failure: redirects to {redirectUrl}?verified=false&error=invalid-or-expired-token

Behaviour

Outcomeredirect presentredirect absent
SuccessRedirect to {redirectUrl}?verified=trueRender hosted success page
Invalid / expired tokenRedirect to {redirectUrl}?verified=false&error=invalid-or-expired-tokenRender hosted error page
Server errorRedirect to {redirectUrl}?verified=false&error=server-errorRender hosted error page

See Also