Account Management
This section provides essential commands for managing your account. Here’s how you can easily take care of your account :
-
Register
Ready to join us? Use this command to set up a new account quickly.
- Using Argument
- Using File
initz register user --email=<email> --username=<username> --org=<org-name> --password=<password>
Flags
--email
- required
--username
- required
--org
- A name to represent your organization for your account.
- required
--password
- required
initz register -f <register.json/register.yaml>
Example template :
- JSON
- YAML
register.json{
"email":"[email protected]",
"username":"example",
"org":"exampleOrg",
"password":"example@123"
}register.yamlemail:[email protected]
username: example
org: exampleOrg
password: example@123After registering, you will receive an email at your registered address to verify your email. Once you have verified your email, you will be able to log in to your account.
-
Login
Already a member? Just log in here to access your account.
use command :
initz login --email=<email> --password=<password>
-
Forgot Password
No worries if you’ve forgotten your password—use this command to recover it quickly.
initz forgotPassword --email=<email>
After running this command, you will receive an email to reset your password. Once you have reset your password, it will be successfully updated.
-
Check email
To check user with email is already exists or not, use command :
initz check email <email>
-
check user name
To check username already exists or not, use command :
initz check user <username>
-
Logout
Done for now? Log out securely and come back anytime!
initz logout