This endpoint allows you to create a new user programmatically. It's commonly used for user registration or system provisioning.
🛠️ Request Method
- Method:
GET
- Path:
/en/support-center/api-reference/user-management/create-user
- Description: Returns the API specification for creating users.
📋 Parameters
Parameter | Type | Description | Example |
---|---|---|---|
username |
string |
Unique identifier for the user | john_doe |
email |
string |
Valid email address | john@example.com |
password |
string |
Encrypted password (recommended) | secure_password_123 |
role |
string |
User role (e.g., admin , user ) |
user |
⚠️ Note: For security, always use HTTPS and avoid sending plain text passwords.
📖 Example Request
curl -X GET "https://api.example.com/create-user?username=jane_doe&email=jane@example.com&password=hashed_password&role=admin"