Signup
This section provides instructions on using /auth/signup endpoint to use for user signup.
Last updated
This section provides instructions on using /auth/signup endpoint to use for user signup.
Last updated
export const SIGNUP_STATUS = {
'CREDENTIALS_MISSING': 0,
'ACCOUNT_ALREADY_EXISTS': 1,
'EMAIL_NOT_VERIFIED': 2,
'SUCCESS': 3,
'SIGNUP_FAILED': 4,
'INVALID_EMAIL': 5,
'EMAIL_NOT_SENT': 6
}{
"message": "User registered successfully",
"status": "success",
"user": {
"email": "[email protected]",
"name": "Johm",
"active_project": null,
"created_at": "2025-03-10T05:20:39.831Z",
"updated_at": "2025-03-10T05:20:39.831Z",
"company_name": null
},
"signupStatus": 3
}