Verify Email
This section provides instructions on using /auth/verify-email endpoint to use for verifying user after signup.
Last updated
This section provides instructions on using /auth/verify-email endpoint to use for verifying user after signup.
Last updated
export const EMAIL_VERIFICATION_STATUS = {
'CREDENTIALS_MISSING': 0,
'INVALID_CODE': 1,
'SUCCESS': 2,
'RESEND_INVITE': 3,
'ACCOUNT_EXISTS': 4,
'ACCOUNT_NOT_FOUND': 5
}{
"message": "email verification successful.",
"status": "success",
"userData": {
"email": "[email protected]",
"name": "John",
"active_project": null,
"created_at": "2025-03-11T06:50:31.798Z",
"updated_at": "2025-03-11T06:52:07.501Z"
},
"verificationStatus": 2
}