v1
authentication
Register New User Account
Create a new user account for ReelAPI access.
This endpoint allows creation of new user accounts with role-based permissions.
User Roles
- operator - Standard reel operation and monitoring access
- admin - Full system administration capabilities
- sys_admin - System administrator with all permissions including serial number updates
Registration Control
Registration availability is controlled by system configuration. Check registration status using the /registration-status endpoint before attempting registration.
NOTE: This endpoint is disabled until further development for Role-Based Access Controls are completed.
post/api/v1/register
Request body
Example request
{
"description": "Create new operator account with default permissions",
"summary": "Standard Operator Account",
"value": {
"password": "SecurePass123!",
"user_role": "operator",
"username": "operator_1"
}
}Response
Successfully created user account with username confirmation
Example response
{
"description": "Account created successfully with username confirmation",
"summary": "Successful Registration",
"value": {
"username": "operator_1"
}
}