Verify email address using the method configured in auth settings (verifyEmailMethod):
email and otp (6-digit numeric code)otp (64-character hex token from magic link)Successfully verified users will receive a session token.
The email verification link sent to users always points to the backend API endpoint.
If verifyEmailRedirectTo is configured, the backend will redirect to that URL after successful verification.
Otherwise, a default success page is displayed.
Client type determines how refresh tokens are returned:
web, mobile, desktop Either a 6-digit numeric code or a 64-character hex token from magic link
"123456"
Required for numeric code verification, omit for magic link verification
Email verified successfully, session created
JWT authentication token
CSRF token for use with refresh endpoint (web clients only)
Refresh token for mobile/desktop clients (null for web clients)
Optional URL to redirect user after verification (only present if configured)