This tutorial guides you through the process of creating a user in our system. Whether you're setting up a new account or integrating user creation into your application, follow these steps:

Step 1: Register a New Account 📝

  1. Navigate to the User Registration Page to start the process.
  2. Fill in the required fields: username, email, and password.
  3. Click "Create Account" to submit your details.
user_icon

Step 2: API Integration 🔗

If you're using our API, send a POST request to /api/v1/users with the following JSON payload:

{
  "username": "example_user",
  "email": "user@example.com",
  "password": "secure_password"
}

✅ Response will include a user_id upon successful creation.

api_documentation

Step 3: Verify User Creation 🧪

  1. Check the User Dashboard to confirm the account is active.
  2. Use the user_id from the response to manage user data later.
tutorial_steps

For advanced options, explore our User Management Guide. Let me know if you need further assistance!